From faa502cbc0336eacf0f6c1bbc872d168a9f513e9 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Fri, 20 Jun 2008 16:56:25 +0000 Subject: [PATCH] jquery ajax: renamed $.fx.speeds.def to _default to match $.fx.step._default naming convention. --- src/fx.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fx.js b/src/fx.js index df7721a..ab3fe1a 100644 --- a/src/fx.js +++ b/src/fx.js @@ -217,7 +217,7 @@ jQuery.extend({ opt.duration = (opt.duration && opt.duration.constructor == Number ? opt.duration : - jQuery.fx.speeds[opt.duration]) || jQuery.fx.speeds.def; + jQuery.fx.speeds[opt.duration]) || jQuery.fx.speeds._default; // Queueing opt.old = opt.complete; @@ -404,7 +404,7 @@ jQuery.extend( jQuery.fx, { slow: 600, fast: 200, // Default speed - def: 400 + _default: 400 }, step: { scrollLeft: function(fx){ -- 1.7.10.4