only call slide() after hash changes if indices have changed #529
This commit is contained in:
parent
5cb9a58938
commit
8dcf324f7a
2 changed files with 5 additions and 3 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
4
js/reveal.min.js
vendored
4
js/reveal.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue