summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index f048b07..a67be11 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -928,9 +928,15 @@ var Reveal = (function(){
*/
function pause() {
+ var wasPaused = dom.wrapper.classList.contains( 'paused' );
+
cancelAutoSlide();
dom.wrapper.classList.add( 'paused' );
+ if( wasPaused === false ) {
+ dispatchEvent( 'paused' );
+ }
+
}
/**
@@ -938,9 +944,15 @@ var Reveal = (function(){
*/
function resume() {
+ var wasPaused = dom.wrapper.classList.contains( 'paused' );
+
cueAutoSlide();
dom.wrapper.classList.remove( 'paused' );
+ if( wasPaused ) {
+ dispatchEvent( 'resumed' );
+ }
+
}
/**