diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2011-11-18 12:19:32 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2011-11-18 17:08:40 +0100 |
commit | 66f9e12797c16d8fa9078f45401f08f0f200e1bc (patch) | |
tree | 5a52c50785e9cef79005d05e995e4257d02ad034 /ui/jquery.ui.progressbar.js | |
parent | e6f55967abdbd7ff6a0717237ab684391a150efc (diff) | |
download | jquery-ui-66f9e12797c16d8fa9078f45401f08f0f200e1bc.tar.gz jquery-ui-66f9e12797c16d8fa9078f45401f08f0f200e1bc.zip |
Widget: Remove method argument from _super and _superApply. Was a left-over from first implementation, not necessary anymore.
Diffstat (limited to 'ui/jquery.ui.progressbar.js')
-rw-r--r-- | ui/jquery.ui.progressbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.progressbar.js b/ui/jquery.ui.progressbar.js index 187470681..f754f61a4 100644 --- a/ui/jquery.ui.progressbar.js +++ b/ui/jquery.ui.progressbar.js @@ -68,7 +68,7 @@ $.widget( "ui.progressbar", { } } - this._super( "_setOption", key, value ); + this._super( key, value ); }, _value: function() { |