fix issue with background images on first vertical sldie

This commit is contained in:
Hakim El Hattab 2014-04-28 11:51:21 +02:00
parent 9f0224adf9
commit 9873839a50
1 changed files with 3 additions and 3 deletions

View File

@ -2332,8 +2332,8 @@
if( background.hasAttribute( 'data-loaded' ) === false ) {
background.setAttribute( 'data-loaded', 'true' );
var backgroundImage = slide.getAttribute( 'data-background-image' );
var backgroundVideo = slide.getAttribute( 'data-background-video' );
var backgroundImage = slide.getAttribute( 'data-background-image' ),
backgroundVideo = slide.getAttribute( 'data-background-video' );
// Images
if( backgroundImage ) {
@ -2673,7 +2673,7 @@
h = Math.max( horizontalSlides.indexOf( slideh ), 0 );
// Assume we're not vertical
v = 0;
v = undefined;
// If this is a vertical slide, grab the vertical index
if( isVertical ) {