Merge pull request #193 from HenryGBC/feature/new_digitalglarus

Fixed Slides support in IE11
This commit is contained in:
Levi Velázquez 2017-04-06 13:43:56 -05:00 committed by GitHub
commit 95a8bae713

View file

@ -32,7 +32,10 @@
}, time);
}
function initBackgroundsHeader(){
var arrayElements = Array.from($('.intro-header .bg-slide'));
var arrayElements = [];
for(var index=0; index<$('.intro-header .bg-slide').length; index++ ){
arrayElements.push($('.intro-header .bg-slide')[index]);
}
_changeBg(0, arrayElements, 4000);
}