jquery ajax: renamed $.fx.speeds.def to _default to match $.fx.step._default naming convention.
This commit is contained in:
parent
6159593520
commit
faa502cbc0
1 changed files with 2 additions and 2 deletions
|
@ -217,7 +217,7 @@ jQuery.extend({
|
||||||
|
|
||||||
opt.duration = (opt.duration && opt.duration.constructor == Number ?
|
opt.duration = (opt.duration && opt.duration.constructor == Number ?
|
||||||
opt.duration :
|
opt.duration :
|
||||||
jQuery.fx.speeds[opt.duration]) || jQuery.fx.speeds.def;
|
jQuery.fx.speeds[opt.duration]) || jQuery.fx.speeds._default;
|
||||||
|
|
||||||
// Queueing
|
// Queueing
|
||||||
opt.old = opt.complete;
|
opt.old = opt.complete;
|
||||||
|
@ -404,7 +404,7 @@ jQuery.extend( jQuery.fx, {
|
||||||
slow: 600,
|
slow: 600,
|
||||||
fast: 200,
|
fast: 200,
|
||||||
// Default speed
|
// Default speed
|
||||||
def: 400
|
_default: 400
|
||||||
},
|
},
|
||||||
step: {
|
step: {
|
||||||
scrollLeft: function(fx){
|
scrollLeft: function(fx){
|
||||||
|
|
Loading…
Reference in a new issue