From dc17d50a42f708f9bbbb84309df532feb3ba4db5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Sun, 17 Jan 2010 17:36:56 +0000 Subject: [PATCH] Widget: _create() doesn't actually take any arguments. --- ui/jquery.ui.widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.widget.js b/ui/jquery.ui.widget.js index a5ae00e910..fe21364fe2 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() {},