diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-01-15 06:34:07 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-01-15 06:34:07 -0500 |
commit | e0b52831fc41bc35d4bcbfa2e9a1dec76d0f0d6a (patch) | |
tree | 118b1cdbf5fe472206fb627c08f290f33928c371 /ui/jquery.ui.dialog.js | |
parent | 56c4c6aca992e1a441e6a2b498c911cf8d2221a4 (diff) | |
download | jquery-ui-e0b52831fc41bc35d4bcbfa2e9a1dec76d0f0d6a.tar.gz jquery-ui-e0b52831fc41bc35d4bcbfa2e9a1dec76d0f0d6a.zip |
Updated widgets to use new methods from $.Widget.
Diffstat (limited to 'ui/jquery.ui.dialog.js')
-rw-r--r-- | ui/jquery.ui.dialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index 50c2bb905..7b53f6915 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -600,7 +600,7 @@ $.widget("ui.dialog", { break; } - $.Widget.prototype._setOption.apply( self, arguments ); + this._super( "_setOption", key, value ); }, _size: function() { |