put back in fake args for signatures that we want to keep

This commit is contained in:
Mike Sherov 2012-10-23 10:34:28 -04:00
parent 257505a9e6
commit 7f19f92c64
2 changed files with 2 additions and 2 deletions

View File

@ -1111,7 +1111,7 @@ function standardSpeed( speed ) {
} }
$.fn.extend({ $.fn.extend({
effect: function() { effect: function( /* effect, options, speed, callback */ ) {
var args = _normalizeArguments.apply( this, arguments ), var args = _normalizeArguments.apply( this, arguments ),
mode = args.mode, mode = args.mode,
queue = args.queue, queue = args.queue,

View File

@ -200,7 +200,7 @@ $.widget.bridge = function( name, object ) {
}; };
}; };
$.Widget = function() {}; $.Widget = function( /* options, element */ ) {};
$.Widget._childConstructors = []; $.Widget._childConstructors = [];
$.Widget.prototype = { $.Widget.prototype = {