diff options
author | Andrew Powell <powella@gmail.com> | 2009-04-12 22:05:53 +0000 |
---|---|---|
committer | Andrew Powell <powella@gmail.com> | 2009-04-12 22:05:53 +0000 |
commit | 5a2ca0e6377dabb96221c767068bc174dead17f8 (patch) | |
tree | 2a3a192ec8f4afe8a044fd4853e902819f86a3ec /ui/ui.progressbar.js | |
parent | a4065729e2f68ae0c47aa12e2c09cfc4c12a5bfe (diff) | |
download | jquery-ui-5a2ca0e6377dabb96221c767068bc174dead17f8.tar.gz jquery-ui-5a2ca0e6377dabb96221c767068bc174dead17f8.zip |
Fix for 4427. Per Scott G; Widgets cannot presently have getters and setters with the same name. Scott's changes to the widget factory enable this and will be merged soon.
Diffstat (limited to 'ui/ui.progressbar.js')
-rw-r--r-- | ui/ui.progressbar.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/ui.progressbar.js b/ui/ui.progressbar.js index 2b292f058..e72b31e5d 100644 --- a/ui/ui.progressbar.js +++ b/ui/ui.progressbar.js @@ -106,7 +106,8 @@ $.extend($.ui.progressbar, { version: "@VERSION", defaults: { value: 0 - } + }, + getter: "value" }); })(jQuery); |