From d9512172e289567fc778547246419996a84a2855 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab <hakim.elhattab@gmail.com>
Date: Mon, 9 Jul 2012 21:03:08 -0400
Subject: [PATCH] separate loading of classList.js as its not tied to execution
 of highlight.js

---
 index.html | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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();
 			} );
-- 
GitLab