diff options
author | Raul Hudea | 2012-06-20 19:12:04 +0300 |
---|---|---|
committer | Raul Hudea | 2012-06-20 19:12:04 +0300 |
commit | 1053dafc1e0fda9270ea167e88583c8ff7ecaaa2 (patch) | |
tree | 4bbf5c81ebc3c479b11aea900cf336381b7c82ce /js | |
parent | fa98bacef62012cb1c101ce1b43267d8955629d6 (diff) |
Send the correct element for fragmenthidden events
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index d398942..e753d17 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -822,7 +822,7 @@ var Reveal = (function(){ verticalFragments[ verticalFragments.length - 1 ].classList.remove( 'visible' ); // Notify subscribers of the change - dispatchEvent( 'fragmenthidden', { fragment: verticalFragments[0] } ); + dispatchEvent( 'fragmenthidden', { fragment: verticalFragments[ verticalFragments.length - 1 ] } ); return true; } } @@ -833,7 +833,7 @@ var Reveal = (function(){ horizontalFragments[ horizontalFragments.length - 1 ].classList.remove( 'visible' ); // Notify subscribers of the change - dispatchEvent( 'fragmenthidden', { fragment: horizontalFragments[0] } ); + dispatchEvent( 'fragmenthidden', { fragment: horizontalFragments[ horizontalFragments.length - 1 ] } ); return true; } } |