From 61904162cf4f81330c23a5ea84fc49c62a3ce4ac Mon Sep 17 00:00:00 2001 From: gnarf Date: Tue, 3 May 2011 07:22:34 -0500 Subject: effects.pulsate: set default mode to 'effect' --- ui/jquery.effects.pulsate.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ui/jquery.effects.pulsate.js b/ui/jquery.effects.pulsate.js index bcba48797..bec33a4bb 100644 --- a/ui/jquery.effects.pulsate.js +++ b/ui/jquery.effects.pulsate.js @@ -15,8 +15,8 @@ $.effects.effect.pulsate = function( o ) { return this.queue( function( next ) { var elem = $( this ), - mode = $.effects.setMode( elem, o.mode || "show" ), - show = mode === "show" || !elem.is( ":visible" ), + mode = $.effects.setMode( elem, o.mode || "effect" ), + show = mode === "show" || elem.is( ":hidden" ), showhide = ( show || mode === "hide" ), // showing or hiding leaves of the "last" animation @@ -32,7 +32,8 @@ $.effects.effect.pulsate = function( o ) { animateTo = 1; } - for ( i = 0; i < anims - 1; i++ ) { + // anims - 1 opacity "toggles" + for ( i = 1; i < anims; i++ ) { elem.animate({ opacity: animateTo }, duration, o.easing ); -- cgit v1.2.3