Skip to content
Snippets Groups Projects
Commit aaa03dc2 authored by Hakim El Hattab's avatar Hakim El Hattab
Browse files

fix incorrect directory reference

parent afd10f68
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ You'll also need to [install Node.js](http://nodejs.org/); then, install the ser ...@@ -114,7 +114,7 @@ You'll also need to [install Node.js](http://nodejs.org/); then, install the ser
Once Node.js and the dependencies are installed, run the following command from the root directory: Once Node.js and the dependencies are installed, run the following command from the root directory:
node lib/slidenotes node plugin/slidenotes
By default, the slides will be served at [localhost:1947](http://localhost:1947). By default, the slides will be served at [localhost:1947](http://localhost:1947).
......
...@@ -321,6 +321,7 @@ linkify( 'a' ); ...@@ -321,6 +321,7 @@ linkify( 'a' );
} ); } );
// If we're runnning the notes server we need to include some additional JS // If we're runnning the notes server we need to include some additional JS
// TODO Is there a better way to determine if we're running the notes server?
if( window.location.host === 'localhost:1947' ) { if( window.location.host === 'localhost:1947' ) {
head.js( 'socket.io/socket.io.js', 'plugin/slidenotes/client.js' ); head.js( 'socket.io/socket.io.js', 'plugin/slidenotes/client.js' );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment