From f79210c6c1451bb4ae2942068de6c7d543f58d89 Mon Sep 17 00:00:00 2001
From: Daniel Teixeira
Date: Thu, 5 Mar 2015 18:48:26 -0300
Subject: 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?
---
plugin/notes/notes.js | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 27199af..f353a8d 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -11,10 +11,14 @@
*/
var RevealNotes = (function() {
- function openNotes() {
- 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' );
+ 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
+ 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.
--
cgit v1.2.3
From 06cdd9b7cd62ffde1f8ebcc91b66ae45944718c7 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Fri, 8 Jan 2016 13:49:06 +0100
Subject: include speaker view keyboard shortcut when applicable #1466
---
js/reveal.js | 5 +++++
plugin/notes/notes.js | 3 +++
2 files changed, 8 insertions(+)
(limited to 'plugin/notes')
diff --git a/js/reveal.js b/js/reveal.js
index 9302f82..c576c8c 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -4684,6 +4684,11 @@
// Programatically triggers a keyboard event
triggerKey: function( keyCode ) {
onDocumentKeyDown( { keyCode: keyCode } );
+ },
+
+ // Registers a new shortcut to include in the help overlay
+ registerKeyboardShortcut: function( key, value ) {
+ keyboardShortcuts[key] = value;
}
};
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 202e73b..deb4891 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -120,6 +120,9 @@ var RevealNotes = (function() {
}
}, false );
+ // Show our keyboard shortcut in the reveal.js help overlay
+ if( window.Reveal ) Reveal.registerKeyboardShortcut( 'S', 'Speaker notes view' );
+
}
return { open: openNotes };
--
cgit v1.2.3
From 19a69b2c899eea4d1d71f55e04be2153e93701b1 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Fri, 8 Jan 2016 14:33:34 +0100
Subject: code format
---
plugin/notes/notes.js | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 4299034..88f98d6 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -11,14 +11,15 @@
*/
var RevealNotes = (function() {
- function openNotes(notes_html_file_path) {
- if (!notes_html_file_path) {
+ function openNotes( notesFilePath ) {
+
+ if( !notesFilePath ) {
var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path
jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path
- notes_html_file_path = jsFileLocation + 'notes.html';
+ notesFilePath = jsFileLocation + 'notes.html';
}
-
- var notesPopup = window.open(notes_html_file_path, 'reveal.js - Notes', 'width=1100,height=700' );
+
+ var notesPopup = window.open( notesFilePath, 'reveal.js - Notes', 'width=1100,height=700' );
/**
* Connect to the notes window through a postmessage handshake.
@@ -100,6 +101,7 @@ var RevealNotes = (function() {
}
connect();
+
}
if( !/receiver/i.test( window.location.search ) ) {
--
cgit v1.2.3
From 6d0b52026a773559407a452b94f8ab60d80aac1e Mon Sep 17 00:00:00 2001
From: Benjamin Tan
Date: Sun, 6 Mar 2016 18:28:08 +0800
Subject: Fix query parameter issue in notes plugin.
Closes #1392.---
plugin/notes/notes.html | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 75f1b9b..d0d88dc 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -288,9 +288,10 @@
'backgroundTransition=none'
].join( '&' );
+ var urlSeparator = /?/.test(data.url) ? '&' : '?';
var hash = '#/' + data.state.indexh + '/' + data.state.indexv;
- var currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;
- var upcomingURL = data.url + '?' + params + '&controls=false' + hash;
+ var currentURL = data.url + urlSeparator + params + '&postMessageEvents=true' + hash;
+ var upcomingURL = data.url + urlSeparator + params + '&controls=false' + hash;
currentSlide = document.createElement( 'iframe' );
currentSlide.setAttribute( 'width', 1280 );
--
cgit v1.2.3
From 922677ac66d6a40eba23e5f9ac3fc10d9145b203 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Wed, 9 Mar 2016 09:37:10 +0100
Subject: fix notes regex #1522 #1392
---
plugin/notes/notes.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index d0d88dc..8523e98 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -288,7 +288,7 @@
'backgroundTransition=none'
].join( '&' );
- var urlSeparator = /?/.test(data.url) ? '&' : '?';
+ var urlSeparator = /\?/.test(data.url) ? '&' : '?';
var hash = '#/' + data.state.indexh + '/' + data.state.indexv;
var currentURL = data.url + urlSeparator + params + '&postMessageEvents=true' + hash;
var upcomingURL = data.url + urlSeparator + params + '&controls=false' + hash;
--
cgit v1.2.3
From 8e3a7f03d189391f88f56b8ac7c96db709d7cba7 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Wed, 9 Mar 2016 09:57:58 +0100
Subject: notes plugin no longer syncs overview mode #1446
---
plugin/notes/notes.html | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 8523e98..c80e77f 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -188,6 +188,10 @@
var data = JSON.parse( event.data );
+ // The overview mode is only useful to the reveal.js instance
+ // where navigation occurs so we don't sync it
+ if( data.state ) delete data.state.overview;
+
// Messages sent by the notes plugin inside of the main window
if( data && data.namespace === 'reveal-notes' ) {
if( data.type === 'connect' ) {
@@ -203,8 +207,10 @@
// Send a message back to notify that the handshake is complete
window.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );
}
- else if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {
+ else if( /slidechanged|fragmentshown|fragmenthidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {
+
window.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );
+
}
}
--
cgit v1.2.3
From ad86772f206d7abd119a8ca7b89a31e237e93584 Mon Sep 17 00:00:00 2001
From: Timothep
Date: Wed, 9 Mar 2016 11:47:23 +0100
Subject: Horizontal 2-1 View for the speaker notes instead of a vertical 1-2
---
plugin/notes/notes.html | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index c80e77f..53d50c3 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -38,8 +38,8 @@
#current-slide {
position: absolute;
- width: 65%;
- height: 100%;
+ width: 50%;
+ height: 50%;
top: 0;
left: 0;
padding-right: 0;
@@ -47,20 +47,19 @@
#upcoming-slide {
position: absolute;
- width: 35%;
- height: 40%;
+ width: 50%;
+ height: 50%;
right: 0;
top: 0;
}
#speaker-controls {
position: absolute;
- top: 40%;
- right: 0;
- width: 35%;
- height: 60%;
+ top: 50%;
+ left: 0;
+ width: 100%;
+ height: 50%;
overflow: auto;
-
font-size: 18px;
}
--
cgit v1.2.3
From 86a3f0276bb654fa8fea281ac1a91b2a05b4f092 Mon Sep 17 00:00:00 2001
From: Dmitry Trofimov
Date: Mon, 4 Jul 2016 16:57:01 +0200
Subject: For a fragment: allow to show a separate note defined in it
When a slide has several fragments it could be convenient to define a note for each of them. In this case we need to show only this specific note defined in a fragment and not others. General note of a slide shouldn't be also shown, as a more specific one should have greater relevance in this case.
---
plugin/notes/notes.js | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 88f98d6..46bf5de 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -50,7 +50,7 @@ var RevealNotes = (function() {
/**
* Posts the current slide data to the notes window
*/
- function post() {
+ function post(event) {
var slideElement = Reveal.getCurrentSlide(),
notesElement = slideElement.querySelector( 'aside.notes' );
@@ -64,6 +64,15 @@ var RevealNotes = (function() {
state: Reveal.getState()
};
+ // Look for notes defined in a fragment, if it is a fragmentshown event
+ if (event && event.hasOwnProperty('fragment')) {
+ var innerNotes = event.fragment.querySelector( 'aside.notes' );
+
+ if ( innerNotes) {
+ notesElement = innerNotes;
+ }
+ }
+
// Look for notes defined in a slide attribute
if( slideElement.hasAttribute( 'data-notes' ) ) {
messageData.notes = slideElement.getAttribute( 'data-notes' );
--
cgit v1.2.3
From da5709919b78d1d75a712c6ba6f4520bee3a0be6 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Wed, 21 Sep 2016 13:54:42 +0200
Subject: layout selector for speaker view; includes four options
---
plugin/notes/notes.html | 222 ++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 207 insertions(+), 15 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 53d50c3..145490a 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -8,6 +8,7 @@
@@ -152,7 +247,7 @@
- UPCOMING:
+ Upcoming
Time Click to Reset
@@ -170,6 +265,10 @@
+
+
+
+
@@ -182,11 +281,20 @@
currentState,
currentSlide,
upcomingSlide,
+ layoutLabel,
+ layoutDropdown,
connected = false;
var socket = io.connect( window.location.origin ),
socketId = '{{socketId}}';
+ var SPEAKER_LAYOUTS = {
+ 'default': 'Default',
+ 'wide': 'Wide',
+ 'tall': 'Tall',
+ 'notes-only': 'Notes only'
+ };
+
socket.on( 'statechanged', function( data ) {
// ignore data from sockets that aren't ours
@@ -205,6 +313,8 @@
} );
+ setupLayout();
+
// Load our presentation iframes
setupIframes();
@@ -362,6 +472,74 @@
}
+ /**
+ * Sets up the speaker view layout and layout selector.
+ */
+ function setupLayout() {
+
+ layoutDropdown = document.querySelector( '.speaker-layout-dropdown' );
+ layoutLabel = document.querySelector( '.speaker-layout-label' );
+
+ // Render the list of available layouts
+ for( var id in SPEAKER_LAYOUTS ) {
+ var option = document.createElement( 'option' );
+ option.setAttribute( 'value', id );
+ option.textContent = SPEAKER_LAYOUTS[ id ];
+ layoutDropdown.appendChild( option );
+ }
+
+ // Monitor the dropdown for changes
+ layoutDropdown.addEventListener( 'change', function( event ) {
+
+ setLayout( layoutDropdown.value );
+
+ }, false );
+
+ // Restore any currently persisted layout
+ setLayout( getLayout() );
+
+ }
+
+ /**
+ * Sets a new speaker view layout. The layout is persisted
+ * in local storage.
+ */
+ function setLayout( value ) {
+
+ var title = SPEAKER_LAYOUTS[ value ];
+
+ layoutLabel.innerHTML = 'Layout' + ( title ? ( ': ' + title ) : '' );
+ layoutDropdown.value = value;
+
+ document.body.setAttribute( 'data-speaker-layout', value );
+
+ // Persist locally
+ if( window.localStorage ) {
+ window.localStorage.setItem( 'reveal-speaker-layout', value );
+ }
+
+ }
+
+ /**
+ * Returns the ID of the most recently set speaker layout
+ * or our default layout if none has been set.
+ */
+ function getLayout() {
+
+ if( window.localStorage ) {
+ var layout = window.localStorage.getItem( 'reveal-speaker-layout' );
+ if( layout ) {
+ return layout;
+ }
+ }
+
+ // Default to the first record in the layouts hash
+ for( var id in SPEAKER_LAYOUTS ) {
+ return id;
+ }
+
+ }
+
function zeroPadInteger( num ) {
var str = '00' + parseInt( num );
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 145490a..4fda869 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -544,6 +544,10 @@
}
+ /**
+ * Returns the ID of the most recently set speaker layout
+ * or our default layout if none has been set.
+ */
function getLayout() {
if( window.localStorage ) {
--
cgit v1.2.3
From f496613dd3309a3066642adf1261e9da0578cdda Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Tue, 31 Jan 2017 17:08:08 +0100
Subject: improved fragment notes support #1636
---
plugin/notes/notes.js | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 46bf5de..44efe15 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -50,10 +50,11 @@ var RevealNotes = (function() {
/**
* Posts the current slide data to the notes window
*/
- function post(event) {
+ function post( event ) {
var slideElement = Reveal.getCurrentSlide(),
- notesElement = slideElement.querySelector( 'aside.notes' );
+ notesElement = slideElement.querySelector( 'aside.notes' ),
+ fragmentElement = slideElement.querySelector( '.current-fragment' );
var messageData = {
namespace: 'reveal-notes',
@@ -64,21 +65,27 @@ var RevealNotes = (function() {
state: Reveal.getState()
};
- // Look for notes defined in a fragment, if it is a fragmentshown event
- if (event && event.hasOwnProperty('fragment')) {
- var innerNotes = event.fragment.querySelector( 'aside.notes' );
-
- if ( innerNotes) {
- notesElement = innerNotes;
- }
- }
-
// Look for notes defined in a slide attribute
if( slideElement.hasAttribute( 'data-notes' ) ) {
messageData.notes = slideElement.getAttribute( 'data-notes' );
messageData.whitespace = 'pre-wrap';
}
+ // Look for notes defined in a fragment
+ if( fragmentElement ) {
+ var fragmentNotes = fragmentElement.querySelector( 'aside.notes' );
+ if( fragmentNotes ) {
+ notesElement = fragmentNotes;
+ }
+ else if( fragmentElement.hasAttribute( 'data-notes' ) ) {
+ messageData.notes = fragmentElement.getAttribute( 'data-notes' );
+ messageData.whitespace = 'pre-wrap';
+
+ // In case there are slide notes
+ notesElement = null;
+ }
+ }
+
// Look for notes defined in an aside element
if( notesElement ) {
messageData.notes = notesElement.innerHTML;
--
cgit v1.2.3
From eb23e58114dadd6c68e41d077e32ce4959678c5a Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 15:35:14 +0100
Subject: Allow popup window access to Reveal API
---
plugin/notes/notes.js | 3 +++
1 file changed, 3 insertions(+)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 44efe15..80fb6e2 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -21,6 +21,9 @@ var RevealNotes = (function() {
var notesPopup = window.open( notesFilePath, 'reveal.js - Notes', 'width=1100,height=700' );
+ // Allow popup window access to Reveal API
+ notesPopup.Reveal = this.Reveal;
+
/**
* Connect to the notes window through a postmessage handshake.
* Using postmessage enables us to work in situations where the
--
cgit v1.2.3
From a161acaba93378573237e8764e3ffa1ed62ecee1 Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 16:52:34 +0100
Subject: extract time display code into new _displayTime() function
This will allow us to reuse the display code for displaying
an additional pacing timer.
---
plugin/notes/notes.html | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 4fda869..2704130 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -463,22 +463,26 @@
minutesEl = timeEl.querySelector( '.minutes-value' ),
secondsEl = timeEl.querySelector( '.seconds-value' );
+ function _displayTime( hrEl, minEl, secEl, time) {
+ var hours = Math.floor( time / ( 1000 * 60 * 60 ) );
+ var minutes = Math.floor( ( time / ( 1000 * 60 ) ) % 60 );
+ var seconds = Math.floor( ( time / 1000 ) % 60 );
+ hrEl.innerHTML = zeroPadInteger( hours );
+ hrEl.className = hours > 0 ? '' : 'mute';
+ minEl.innerHTML = ':' + zeroPadInteger( minutes );
+ minEl.className = minutes > 0 ? '' : 'mute';
+ secEl.innerHTML = ':' + zeroPadInteger( seconds );
+ }
+
function _updateTimer() {
var diff, hours, minutes, seconds,
now = new Date();
diff = now.getTime() - start.getTime();
- hours = Math.floor( diff / ( 1000 * 60 * 60 ) );
- minutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );
- seconds = Math.floor( ( diff / 1000 ) % 60 );
clockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );
- hoursEl.innerHTML = zeroPadInteger( hours );
- hoursEl.className = hours > 0 ? '' : 'mute';
- minutesEl.innerHTML = ':' + zeroPadInteger( minutes );
- minutesEl.className = minutes > 0 ? '' : 'mute';
- secondsEl.innerHTML = ':' + zeroPadInteger( seconds );
+ _displayTime( hoursEl, minutesEl, secondsEl, diff );
}
--
cgit v1.2.3
From 89b0c5a8d04e347492ce7dd28fdb1305c6b5724a Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 17:10:58 +0100
Subject: use opacity for muted clock elements
This allows us to use different colours for different timers,
which will be useful when we add a pacing timer.
---
plugin/notes/notes.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 2704130..5334d81 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -124,7 +124,7 @@
}
.speaker-controls-time span.mute {
- color: #bbb;
+ opacity: 0.3;
}
.speaker-controls-notes {
--
cgit v1.2.3
From b1b4ee270b189c4c9ed699df70ea10badc43edc9 Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 17:39:04 +0100
Subject: don't mute minutes when hours is unmuted
---
plugin/notes/notes.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 5334d81..2012361 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -470,7 +470,7 @@
hrEl.innerHTML = zeroPadInteger( hours );
hrEl.className = hours > 0 ? '' : 'mute';
minEl.innerHTML = ':' + zeroPadInteger( minutes );
- minEl.className = minutes > 0 ? '' : 'mute';
+ minEl.className = (hours > 0 || minutes > 0) ? '' : 'mute';
secEl.innerHTML = ':' + zeroPadInteger( seconds );
}
--
cgit v1.2.3
From 1eada3b3600f6ae3ecda4edec877571b409c61c8 Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 17:40:21 +0100
Subject: avoid deleting existing classes when muting time elements
and make muting work for negative values
---
plugin/notes/notes.html | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 2012361..15bca19 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -468,9 +468,19 @@
var minutes = Math.floor( ( time / ( 1000 * 60 ) ) % 60 );
var seconds = Math.floor( ( time / 1000 ) % 60 );
hrEl.innerHTML = zeroPadInteger( hours );
- hrEl.className = hours > 0 ? '' : 'mute';
+ if (hours == 0) {
+ hrEl.classList.add( 'mute' );
+ }
+ else {
+ hrEl.classList.remove( 'mute' );
+ }
minEl.innerHTML = ':' + zeroPadInteger( minutes );
- minEl.className = (hours > 0 || minutes > 0) ? '' : 'mute';
+ if (hours == 0 && minutes == 0) {
+ minEl.classList.add( 'mute' );
+ }
+ else {
+ minEl.classList.remove( 'mute' );
+ }
secEl.innerHTML = ':' + zeroPadInteger( seconds );
}
--
cgit v1.2.3
From 933eba8789f9702ff6db76c4310f7b21db14a7b9 Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 18:11:48 +0100
Subject: round decreasing timers to mirror increasing timers
---
plugin/notes/notes.html | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 15bca19..34f6073 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -464,9 +464,10 @@
secondsEl = timeEl.querySelector( '.seconds-value' );
function _displayTime( hrEl, minEl, secEl, time) {
- var hours = Math.floor( time / ( 1000 * 60 * 60 ) );
- var minutes = Math.floor( ( time / ( 1000 * 60 ) ) % 60 );
- var seconds = Math.floor( ( time / 1000 ) % 60 );
+ time = Math.round(time / 1000);
+ var seconds = time % 60;
+ var minutes = ( time / 60 ) % 60 ;
+ var hours = time / ( 60 * 60 ) ;
hrEl.innerHTML = zeroPadInteger( hours );
if (hours == 0) {
hrEl.classList.add( 'mute' );
--
cgit v1.2.3
From 9c7fda43e9e09c720d545d8b7e8d914f00802cb5 Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 18:00:27 +0100
Subject: don't show negative signs inside minutes/seconds elements
---
plugin/notes/notes.html | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 34f6073..df55e79 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -464,11 +464,12 @@
secondsEl = timeEl.querySelector( '.seconds-value' );
function _displayTime( hrEl, minEl, secEl, time) {
- time = Math.round(time / 1000);
+ var sign = Math.sign(time) == -1 ? "-" : "";
+ time = Math.abs(Math.round(time / 1000));
var seconds = time % 60;
var minutes = ( time / 60 ) % 60 ;
var hours = time / ( 60 * 60 ) ;
- hrEl.innerHTML = zeroPadInteger( hours );
+ hrEl.innerHTML = sign + zeroPadInteger( hours );
if (hours == 0) {
hrEl.classList.add( 'mute' );
}
--
cgit v1.2.3
From 715cf0ba11db0f913cfd2edb56a2c66aed57b505 Mon Sep 17 00:00:00 2001
From: Adam Spiers
Date: Sat, 16 Apr 2016 15:43:44 +0100
Subject: optionally display pacing advice based on slide timings
Add an option to display advice on whether the current pace of the
presentation is on track for the right timing (shown as green), and if
not, whether the presenter should speed up (shown as red) or has the
luxury of slowing down (blue).
The pacing timer can be enabled by configuring by the `defaultTiming`
parameter in the `Reveal` configuration block, which specifies the
number of seconds per slide. 120 can be a reasonable rule of thumb.
Timings can also be given per slide `` by setting the
`data-timing` attribute. Both values are in numbers of seconds.
When the option is enabled, clicking on the timers will reset the timer
to the beginning of the current slide, i.e. as if pacing was perfectly
on track, not to zero as if the presentation had just begun.
---
README.md | 8 ++-
plugin/notes/notes.html | 140 ++++++++++++++++++++++++++++++++++++++++++++----
2 files changed, 136 insertions(+), 12 deletions(-)
(limited to 'plugin/notes')
diff --git a/README.md b/README.md
index 6073b77..f03ae0f 100644
--- a/README.md
+++ b/README.md
@@ -187,6 +187,9 @@ Reveal.initialize({
// Display a presentation progress bar
progress: true,
+ // Set default timing of 2 minutes per slide
+ defaultTiming: 120,
+
// Display the page number of the current slide
slideNumber: false,
@@ -967,12 +970,15 @@ Notes are only visible to the speaker inside of the speaker view. If you wish to
When `showNotes` is enabled notes are also included when you [export to PDF](https://github.com/hakimel/reveal.js#pdf-export). By default, notes are printed in a semi-transparent box on top of the slide. If you'd rather print them on a separate page after the slide, set `showNotes: "separate-page"`.
-#### Speaker notes clock and timer
+#### Speaker notes clock and timers
The speaker notes window will also show:
- Time elapsed since the beginning of the presentation. If you hover the mouse above this section, a timer reset button will appear.
- Current wall-clock time
+- (Optionally) a pacing timer which indicates whether the current pace of the presentation is on track for the right timing (shown in green), and if not, whether the presenter should speed up (shown in red) or has the luxury of slowing down (blue).
+
+The pacing timer can be enabled by configuring by the `defaultTiming` parameter in the `Reveal` configuration block, which specifies the number of seconds per slide. 120 can be a reasonable rule of thumb. Timings can also be given per slide `` by setting the `data-timing` attribute. Both values are in numbers of seconds.
## Server Side Speaker Notes
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index df55e79..c339d58 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -82,6 +82,7 @@
}
.speaker-controls-time .label,
+ .speaker-controls-pace .label,
.speaker-controls-notes .label {
text-transform: uppercase;
font-weight: normal;
@@ -90,7 +91,7 @@
margin: 0;
}
- .speaker-controls-time {
+ .speaker-controls-time, .speaker-controls-pace {
border-bottom: 1px solid rgba( 200, 200, 200, 0.5 );
margin-bottom: 10px;
padding: 10px 16px;
@@ -111,6 +112,13 @@
.speaker-controls-time .timer,
.speaker-controls-time .clock {
width: 50%;
+ }
+
+ .speaker-controls-time .timer,
+ .speaker-controls-time .clock,
+ .speaker-controls-time .pacing .hours-value,
+ .speaker-controls-time .pacing .minutes-value,
+ .speaker-controls-time .pacing .seconds-value {
font-size: 1.9em;
}
@@ -127,6 +135,18 @@
opacity: 0.3;
}
+ .speaker-controls-time .pacing.ahead {
+ color: blue;
+ }
+
+ .speaker-controls-time .pacing.on-track {
+ color: green;
+ }
+
+ .speaker-controls-time .pacing.behind {
+ color: red;
+ }
+
.speaker-controls-notes {
padding: 10px 16px;
}
@@ -276,6 +296,12 @@
00:00:00
+
+ Pacing
+
+ 00:00:00
+ to finish current slide
+
@@ -450,6 +476,47 @@
}
+ function getTimings() {
+
+ var slides = Reveal.getSlides();
+ var defaultTiming = Reveal.getConfig().defaultTiming;
+ if (defaultTiming == null) {
+ return null;
+ }
+ var timings = [];
+ for ( var i in slides ) {
+ var slide = slides[i];
+ var timing = defaultTiming;
+ if( slide.hasAttribute( 'data-timing' )) {
+ var t = slide.getAttribute( 'data-timing' );
+ timing = parseInt(t);
+ if( isNaN(timing) ) {
+ console.warn("Could not parse timing '" + t + "' of slide " + i + "; using default of " + defaultTiming);
+ timing = defaultTiming;
+ }
+ }
+ timings.push(timing);
+ }
+ return timings;
+
+ }
+
+ /**
+ * Return the number of seconds allocated for presenting
+ * all slides up to and including this one.
+ */
+ function getTimeAllocated(timings) {
+
+ var slides = Reveal.getSlides();
+ var allocated = 0;
+ var currentSlide = Reveal.getSlidePastCount();
+ for (var i in slides.slice(0, currentSlide + 1)) {
+ allocated += timings[i];
+ }
+ return allocated;
+
+ }
+
/**
* Create the timer and clock and start updating them
* at an interval.
@@ -457,18 +524,30 @@
function setupTimer() {
var start = new Date(),
- timeEl = document.querySelector( '.speaker-controls-time' ),
- clockEl = timeEl.querySelector( '.clock-value' ),
- hoursEl = timeEl.querySelector( '.hours-value' ),
- minutesEl = timeEl.querySelector( '.minutes-value' ),
- secondsEl = timeEl.querySelector( '.seconds-value' );
+ timeEl = document.querySelector( '.speaker-controls-time' ),
+ clockEl = timeEl.querySelector( '.clock-value' ),
+ hoursEl = timeEl.querySelector( '.hours-value' ),
+ minutesEl = timeEl.querySelector( '.minutes-value' ),
+ secondsEl = timeEl.querySelector( '.seconds-value' ),
+ pacingTitleEl = timeEl.querySelector( '.pacing-title' ),
+ pacingEl = timeEl.querySelector( '.pacing' ),
+ pacingHoursEl = pacingEl.querySelector( '.hours-value' ),
+ pacingMinutesEl = pacingEl.querySelector( '.minutes-value' ),
+ pacingSecondsEl = pacingEl.querySelector( '.seconds-value' );
+
+ var timings = getTimings();
+ if (timings !== null) {
+ pacingTitleEl.style.removeProperty('display');
+ pacingEl.style.removeProperty('display');
+ }
function _displayTime( hrEl, minEl, secEl, time) {
+
var sign = Math.sign(time) == -1 ? "-" : "";
time = Math.abs(Math.round(time / 1000));
var seconds = time % 60;
- var minutes = ( time / 60 ) % 60 ;
- var hours = time / ( 60 * 60 ) ;
+ var minutes = Math.floor( time / 60 ) % 60 ;
+ var hours = Math.floor( time / ( 60 * 60 )) ;
hrEl.innerHTML = sign + zeroPadInteger( hours );
if (hours == 0) {
hrEl.classList.add( 'mute' );
@@ -489,12 +568,34 @@
function _updateTimer() {
var diff, hours, minutes, seconds,
- now = new Date();
+ now = new Date();
diff = now.getTime() - start.getTime();
clockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );
_displayTime( hoursEl, minutesEl, secondsEl, diff );
+ if (timings !== null) {
+ _updatePacing(diff);
+ }
+
+ }
+
+ function _updatePacing(diff) {
+
+ var slideEndTiming = getTimeAllocated(timings) * 1000;
+ var currentSlide = Reveal.getSlidePastCount();
+ var currentSlideTiming = timings[currentSlide] * 1000;
+ var timeLeftCurrentSlide = slideEndTiming - diff;
+ if (timeLeftCurrentSlide < 0) {
+ pacingEl.className = 'pacing behind';
+ }
+ else if (timeLeftCurrentSlide < currentSlideTiming) {
+ pacingEl.className = 'pacing on-track';
+ }
+ else {
+ pacingEl.className = 'pacing ahead';
+ }
+ _displayTime( pacingHoursEl, pacingMinutesEl, pacingSecondsEl, timeLeftCurrentSlide );
}
@@ -504,9 +605,26 @@
// Then update every second
setInterval( _updateTimer, 1000 );
- timeEl.addEventListener( 'click', function() {
- start = new Date();
+ function _resetTimer() {
+
+ if (timings == null) {
+ start = new Date();
+ }
+ else {
+ // Reset timer to beginning of current slide
+ var slideEndTiming = getTimeAllocated(timings) * 1000;
+ var currentSlide = Reveal.getSlidePastCount();
+ var currentSlideTiming = timings[currentSlide] * 1000;
+ var previousSlidesTiming = slideEndTiming - currentSlideTiming;
+ var now = new Date();
+ start = new Date(now.getTime() - previousSlidesTiming);
+ }
_updateTimer();
+
+ }
+
+ timeEl.addEventListener( 'click', function() {
+ _resetTimer();
return false;
} );
--
cgit v1.2.3
From 0c3d89bfce2723b077f075b22e536f7e530a0b13 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab
Date: Fri, 21 Apr 2017 09:35:51 +0200
Subject: minor tweak for #1564
---
plugin/notes/notes.html | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
(limited to 'plugin/notes')
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index c339d58..e368a5f 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -135,6 +135,10 @@
opacity: 0.3;
}
+ .speaker-controls-time .pacing-title {
+ margin-top: 5px;
+ }
+
.speaker-controls-time .pacing.ahead {
color: blue;
}
@@ -297,10 +301,9 @@
- Pacing
+ Pacing – Time to finish current slide
00:00:00
- to finish current slide
--
cgit v1.2.3