From 0e8640094301889e5c848dcf92084678778f0a19 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Wed, 4 Jul 2012 14:18:09 -0400
Subject: conditional loading of socket.io and the notes client js based on
window host
---
index.html | 20 +++++++++++++++-----
js/reveal.slidenotes.js | 35 +++++++++++++++++++++++++++++++++++
lib/slidenotes/client.js | 1 +
lib/slidenotes/notes.html | 2 +-
4 files changed, 52 insertions(+), 6 deletions(-)
create mode 100644 js/reveal.slidenotes.js
diff --git a/index.html b/index.html
index b08c62a..68c5e4f 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
- reveal.js
+ reveal.js - HTML5 Presentations
@@ -313,11 +313,21 @@ linkify( 'a' );
transition: query.transition || 'default' // default/cube/page/concave/linear(2d)
});
+ // Fire off syntax highlighting for potential code samples in the slides
hljs.initHighlightingOnLoad();
-
-
-
-
+ // If we're runnning the notes node server we need to include some
+ // additional JS
+ if( window.location.host === 'localhost:1947' ) {
+ var notes_socket = document.createElement( 'script' );
+ notes_socket.setAttribute( 'src', 'socket.io/socket.io.js' );
+ document.body.appendChild( notes_socket );
+
+ var notes_client = document.createElement( 'script' );
+ notes_client.setAttribute( 'src', 'lib/slidenotes/client.js' );
+ document.body.appendChild( notes_client );
+ }
+
+