From: Andrew Powell Date: Sun, 12 Apr 2009 22:05:53 +0000 (+0000) Subject: Fix for 4427. Per Scott G; Widgets cannot presently have getters and setters with... X-Git-Tag: 1.8a1~152 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5a2ca0e6377dabb96221c767068bc174dead17f8;p=jquery-ui.git 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. --- 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);