fix transitions in firefox
This commit is contained in:
parent
ae962d729b
commit
e7d82f1316
1 changed files with 2 additions and 2 deletions
|
@ -2014,7 +2014,7 @@ var Reveal = (function(){
|
||||||
|
|
||||||
// Show the horizontal slide if it's within the view distance
|
// Show the horizontal slide if it's within the view distance
|
||||||
if( distanceX < viewDistance ) {
|
if( distanceX < viewDistance ) {
|
||||||
horizontalSlide.style.display = '';
|
horizontalSlide.style.display = 'block';
|
||||||
loadSlide( horizontalSlide );
|
loadSlide( horizontalSlide );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -2031,7 +2031,7 @@ var Reveal = (function(){
|
||||||
distanceY = x === indexh ? Math.abs( indexv - y ) : Math.abs( y - oy );
|
distanceY = x === indexh ? Math.abs( indexv - y ) : Math.abs( y - oy );
|
||||||
|
|
||||||
if( distanceX + distanceY < viewDistance ) {
|
if( distanceX + distanceY < viewDistance ) {
|
||||||
verticalSlide.style.display = '';
|
verticalSlide.style.display = 'block';
|
||||||
loadSlide( verticalSlide );
|
loadSlide( verticalSlide );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue