diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-09 21:03:08 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-09 21:03:22 -0400 |
commit | d9512172e289567fc778547246419996a84a2855 (patch) | |
tree | 4519f79e658e0eb8132b73061080c56c33adff74 /index.html | |
parent | f57de200ec32861835c9582090d52c70e73dace9 (diff) | |
download | fosdem-2018-presentation-d9512172e289567fc778547246419996a84a2855.tar fosdem-2018-presentation-d9512172e289567fc778547246419996a84a2855.tar.gz |
separate loading of classList.js as its not tied to execution of highlight.js
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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(); } ); |