aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.widget.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-01-17 17:36:56 +0000
committerScott González <scott.gonzalez@gmail.com>2010-01-17 17:36:56 +0000
commitdc17d50a42f708f9bbbb84309df532feb3ba4db5 (patch)
tree01a25fda9332965a33357d013739aac1de7ed50d /ui/jquery.ui.widget.js
parent296deed1c2854c9a2403341df9509e2dbd93fb89 (diff)
downloadjquery-ui-dc17d50a42f708f9bbbb84309df532feb3ba4db5.tar.gz
jquery-ui-dc17d50a42f708f9bbbb84309df532feb3ba4db5.zip
Widget: _create() doesn't actually take any arguments.
Diffstat (limited to 'ui/jquery.ui.widget.js')
-rw-r--r--ui/jquery.ui.widget.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js
index a5ae00e91..fe21364fe 100644
--- a/ui/jquery.ui.widget.js
+++ b/ui/jquery.ui.widget.js
@@ -136,7 +136,7 @@ $.Widget.prototype = {
self.destroy();
});
- this._create( options, element );
+ this._create();
this._init();
},
_create: function() {},