Remove inline code highlighting from milk demo. View source works fine.

This commit is contained in:
Jörn Zaefferer
2013-03-20 15:03:37 +01:00
parent c73d5d7342
commit ff5e4f626d
3 changed files with 0 additions and 39 deletions

View File

@@ -1,15 +0,0 @@
.jscom, .mix htcom { color: #4040c2; }
.com { color: green; }
.regexp { color: maroon; }
.string { color: teal; }
.keywords { color: blue; }
.global { color: #008; }
.numbers { color: #880; }
.comm { color: green; }
.tag { color: blue; }
.entity { color: blue; }
.string { color: teal; }
.aname { color: maroon; }
.avalue { color: maroon; }
.jquery { color: #00a; }
.plugin { color: red; }

File diff suppressed because one or more lines are too long

View File

@@ -206,28 +206,5 @@ $(document).ready(function() {
</div>
<script type="text/javascript">
$(document).ready(function() {
$("<a href='#'>Show script used on this page</a><br/>").appendTo("body").click(function() {
script.toggle();
return false;
});
$("<a href='#'>Show serverside script</a>").appendTo("body").click(function() {
serverscript.toggle();
return false;
});
var script = $("<code class='mix'>").html( $("#demo").html() ).wrap("<pre></pre>").parent().hide().appendTo("body");
var serverscript;
$.get("users.phps", function(response) {
serverscript = $("<pre>").hide().html( response ).appendTo("body");
})
});
</script>
<script src="../js/chili-1.7.pack.js" type="text/javascript"></script>
</body>
</html>