Add support for custom notes.html file

It would be nice if we could define a custom notes.html file.

Actually, I'm used to compile my js files before releasing my app and, using selectors like `script[src$="notes.js"]`, doesn't work :(

So, what do you think about it?
This commit is contained in:
Daniel Teixeira 2015-03-05 18:48:26 -03:00
parent 4677741568
commit f79210c6c1
1 changed files with 8 additions and 4 deletions

View File

@ -11,10 +11,14 @@
*/
var RevealNotes = (function() {
function openNotes() {
function openNotes(notes_html_file_path) {
if (!notes_html_file_path) {
var jsFileLocation = document.querySelector('script[src$="notes.js"]').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=1100,height=700' );
notes_html_file_path = jsFileLocation + 'notes.html';
}
var notesPopup = window.open(notes_html_file_path, 'reveal.js - Notes', 'width=1100,height=700' );
/**
* Connect to the notes window through a postmessage handshake.