aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/ui.progressbar.js20
1 files changed, 15 insertions, 5 deletions
diff --git a/ui/ui.progressbar.js b/ui/ui.progressbar.js
index 676442d3b..9e758bd40 100644
--- a/ui/ui.progressbar.js
+++ b/ui/ui.progressbar.js
@@ -137,7 +137,7 @@ $.widget("ui.progressbar", {
var percent = Math.round(this.percentState);
if (this.options.range && !this.options.text) {
- this.text(percent + '%');
+ this._setText(percent + '%');
}
this.element.attr("aria-valuenow", percent);
this._trigger('progress', null, this.ui());
@@ -186,16 +186,26 @@ $.widget("ui.progressbar", {
this._trigger('stop', null, this.ui());
},
- text: function(text){
- this.textElement.add(this.textBg).html(text);
- },
-
ui: function() {
return {
options: this.options,
pixelState: this.pixelState,
percentState: this.percentState
};
+ },
+
+ _setData: function(key, value){
+ switch (key) {
+ case 'text':
+ this._setText(value);
+ break;
+ }
+
+ $.widget.prototype._setData.apply(this, arguments);
+ },
+
+ _setText: function(text){
+ this.textElement.add(this.textBg).html(text);
}
});