find correct path to open html file from the notes.js path
This commit is contained in:
parent
cf8708f932
commit
fd7d09f697
1 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,9 @@
|
||||||
var RevealNotes = (function() {
|
var RevealNotes = (function() {
|
||||||
|
|
||||||
function openNotes() {
|
function openNotes() {
|
||||||
var notesPopup = window.open( 'plugin/notes/notes.html', 'reveal.js - Notes', 'width=1120,height=850' );
|
var jsFileLocation = document.querySelector('script[src*=notes]').src; // this js file path
|
||||||
|
jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path
|
||||||
|
var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1120,height=850' );
|
||||||
|
|
||||||
// Fires when slide is changed
|
// Fires when slide is changed
|
||||||
Reveal.addEventListener( 'slidechanged', function( event ) {
|
Reveal.addEventListener( 'slidechanged', function( event ) {
|
||||||
|
|
Loading…
Reference in a new issue