diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-17 17:36:56 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-17 17:36:56 +0000 |
commit | dc17d50a42f708f9bbbb84309df532feb3ba4db5 (patch) | |
tree | 01a25fda9332965a33357d013739aac1de7ed50d /ui/jquery.ui.widget.js | |
parent | 296deed1c2854c9a2403341df9509e2dbd93fb89 (diff) | |
download | jquery-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.js | 2 |
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() {}, |