From: Hakim El Hattab Date: Tue, 10 Jul 2012 01:03:08 +0000 (-0400) Subject: separate loading of classList.js as its not tied to execution of highlight.js X-Git-Tag: 1.4.0~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d9512172e289567fc778547246419996a84a2855;p=reveal.js.git separate loading of classList.js as its not tied to execution of highlight.js --- diff --git a/index.html b/index.html index d2dfdab..4c62b48 100644 --- a/index.html +++ b/index.html @@ -314,7 +314,8 @@ linkify( 'a' ); } ); // Load third party scripts - head.js( 'lib/js/highlight.js', 'lib/js/classList.js', function() { + head.js( 'lib/js/classList.js' ); + head.js( 'lib/js/highlight.js', function() { // Fire off syntax highlighting for potential code samples in the slides hljs.initHighlightingOnLoad(); } );