diff options
author | Hakim El Hattab | 2013-07-19 09:35:49 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-07-19 09:35:49 -0400 |
commit | 8dcf324f7a7362fb3bcc758b2d1726be9bcad807 (patch) | |
tree | db41812947999df38b629cd8d3d8b43c69524f12 /js/reveal.js | |
parent | 5cb9a58938a5808c83d01f3c73ccb36edcbe0756 (diff) |
only call slide() after hash changes if indices have changed #529
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 560c94f..eb23644 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1819,7 +1819,9 @@ var Reveal = (function(){ var h = parseInt( bits[0], 10 ) || 0, v = parseInt( bits[1], 10 ) || 0; - slide( h, v ); + if( h !== indexh || v !== indexv ) { + slide( h, v ); + } } } |