From 329b750af6649b3755920144bf1d52bfc3a42a0e Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Tue, 5 Oct 2010 13:38:19 -0500 Subject: [PATCH] Tiny cleanup to remove some superfluous code that was left in from before I decided not to reset the display of inline elements after animation finishes (since this just causes it to jump back once complete). --- src/effects.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/effects.js b/src/effects.js index e4893d6..5d574a8 100644 --- a/src/effects.js +++ b/src/effects.js @@ -155,7 +155,6 @@ jQuery.fn.extend({ } else { this.style.display = "inline"; - jQuery.data( this, "oldzoom", this.style.zoom ); this.style.zoom = 1; } } @@ -458,14 +457,14 @@ jQuery.extend( jQuery.fx, { jQuery.fx.stop(); } }, - + interval: 13, - + stop: function() { clearInterval( timerId ); timerId = null; }, - + speeds: { slow: 600, fast: 200, -- 1.7.10.4