Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ var RevealNotes = (function() {

if( !/receiver/i.test( window.location.search ) ) {

// If the there's a 'notes' query set, open directly
// If there's a 'notes' query set, open directly
if( window.location.search.match( /(\?|\&)notes/gi ) !== null ) {
openNotes();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Handles finding a text string anywhere in the slides and showing the next occurrence to the user
* by navigatating to that slide and highlighting it.
* by navigating to that slide and highlighting it.
*
* By Jon Snyder <snyder.jon@gmail.com>, February 2013
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ var zoom = (function(){
}

/**
* Pan the document when the mosue cursor approaches the edges
* Pan the document when the mouse cursor approaches the edges
* of the window.
*/
function pan() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* external.js
* Cal Evans <cal@calevans.com>
* (c) Eevans Internet Construction Company, Inc.
* Released under the MIT licesne
* (c) Evans Internet Construction Company, Inc.
* Released under the MIT license
* Load external files into a reveal.js presentation.
*
* This is a reveal.js plugin to load external html files. It replaces the
Expand Down Expand Up @@ -44,7 +44,7 @@
section.innerHTML = '<section data-state="alert">' +
'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +
'Check your browser\'s JavaScript console for more details.' +
'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +
'<p>Remember that you need to serve the presentation HTML from an HTTP server.</p>' +
'</section>';

}
Expand All @@ -57,7 +57,7 @@
xhr.send();
}
catch ( e ) {
alert( 'Failed to get the file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );
alert( 'Failed to get the file ' + url + '. Make sure that the presentation and the file are served by an HTTP server and the file can be found there. ' + e );
}

}
Expand Down