Remove zepto

This commit is contained in:
oakes
2014-04-01 01:27:24 -04:00
parent 88886c7693
commit 95e2a16842
3 changed files with 8 additions and 10 deletions

View File

@@ -1,3 +1,4 @@
$(document).ready(function() {
$('pre').each(function(i, e) {hljs.highlightBlock(e)});
});
var elems = document.getElementsByTagName("pre");
for (var i = 0; i < elems.length; i++) {
hljs.highlightBlock(elems[i]);
}

File diff suppressed because one or more lines are too long

View File

@@ -52,10 +52,9 @@
[parsed-files]
(html [:head
[:link {:rel "stylesheet" :href "style.css"}]
[:link {:rel "stylesheet" :href "styles/default.css"}]
[:script (-> "highlight.pack.js" io/resource slurp)]
[:script (-> "zepto.min.js" io/resource slurp)]
[:script (-> "init.js" io/resource slurp)]]
[:link {:rel "stylesheet" :href "styles/default.css"}]]
[:body
(sidebar parsed-files)
(content parsed-files)]))
(content parsed-files)
[:script (-> "highlight.pack.js" io/resource slurp)]
[:script (-> "init.js" io/resource slurp)]]))