From ce69e7ced4e8786ca5164372007c48a11ba90e72 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 18 Nov 2008 02:22:30 +0000 Subject: [PATCH] Progressbar: Removed text method. --- ui/ui.progressbar.js | 20 +++++++++++++++----- 1 file 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); } }); -- 2.39.5