From 5a2ca0e6377dabb96221c767068bc174dead17f8 Mon Sep 17 00:00:00 2001 From: Andrew Powell Date: Sun, 12 Apr 2009 22:05:53 +0000 Subject: [PATCH] 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. --- ui/ui.progressbar.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.39.5