ericholsinger
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Plugin: Promotion Slider] When site minimized, slider catches upTom, I placed code inside the autoAdvance conditional, right after the opening brace.
The ellipses (…) were meant to indicate ‘the rest of the original code’.
It may not work in all cases. I’ve seen it misbehaving even after my code change. But, it appears to alleviate the wonky behavior in some browsers.
Forum: Plugins
In reply to: [Plugin: Promotion Slider] When site minimized, slider catches upThat’s correct (promo_slider.js, via plugin editor).
And that is also correct that it does seem to still do the catch up on animations, esp in FF. I tested a few browsers and decided it was better than without it, for me.
Forum: Plugins
In reply to: [Promotion Slider] Slider is flashing and showing several pictures at onceI posted a little snippet which I added to promo_slider.js over in this other thread…
It may help. Seems to be working for me.
Forum: Plugins
In reply to: [Plugin: Promotion Slider] When site minimized, slider catches upI added the following to the if (autoadvance) block and it seems to be a bit more sane…
if( autoAdvance ){ $(window).focus(function(event){ sliderInterval = setInterval(function(){progress('forward', currentSlider, panelCount);}, (timeDelay * 1000)); }).blur(function(event){ clearInterval(sliderInterval); }); .... }
Viewing 4 replies - 1 through 4 (of 4 total)