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.tooltip.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.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index 35b6f9b50..a006f3bf7 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -54,7 +54,7 @@ $.widget( "ui.tooltip", { // disable element style changes return; } - this._super( "_setOption", key, value ); + this._super( key, value ); }, _disable: function() { |