diff options
author | Eric Weikl | 2013-06-18 18:33:03 +0200 |
---|---|---|
committer | Eric Weikl | 2013-06-18 18:33:03 +0200 |
commit | 46dd9dd817a7e362afb099d3fcc6e9a97c1ee4d3 (patch) | |
tree | fb5d95ecdcbdee0e6159ba38ea16fd344d92b439 | |
parent | 8aede28699829edd5f8ef7a1c4fab61ad41c5220 (diff) |
Create a single fragment event per fragment-index
For backward-compatibility, add a new 'fragments' property to the
fragmentshown and fragmenthidden events. The 'fragment' property still
returns the first fragment.
-rw-r--r-- | js/reveal.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/js/reveal.js b/js/reveal.js index 70c782c..074fd9d 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1916,11 +1916,11 @@ var Reveal = (function(){ toArray( fragments ).forEach( function( element ) { element.classList.add( 'visible' ); - - // Notify subscribers of the change - dispatchEvent( 'fragmentshown', { fragment: element } ); } ); + // Notify subscribers of the change + dispatchEvent( 'fragmentshown', { fragment: fragments[0], fragments: fragments } ); + updateControls(); return true; } @@ -1950,11 +1950,11 @@ var Reveal = (function(){ toArray( fragments ).forEach( function( f ) { f.classList.remove( 'visible' ); - - // Notify subscribers of the change - dispatchEvent( 'fragmenthidden', { fragment: f } ); } ); + // Notify subscribers of the change + dispatchEvent( 'fragmenthidden', { fragment: fragments[0], fragments: fragments } ); + updateControls(); return true; } |