diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-23 13:27:57 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-23 13:27:57 +0000 |
commit | 2b21245cd01e91b9b3114d06ba5b45650cf63ec6 (patch) | |
tree | cb17c4599d373a988b657626a73ae911e53c7f26 /ui/ui.progressbar.js | |
parent | 0725254afff9df75c68efbbe565e94784e5a6e80 (diff) | |
download | jquery-ui-2b21245cd01e91b9b3114d06ba5b45650cf63ec6.tar.gz jquery-ui-2b21245cd01e91b9b3114d06ba5b45650cf63ec6.zip |
progressbar: changed value to have 'ui-widget-header' instead of 'ui-state-default'
Diffstat (limited to 'ui/ui.progressbar.js')
-rw-r--r-- | ui/ui.progressbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.progressbar.js b/ui/ui.progressbar.js index db65ccf30..f47320f47 100644 --- a/ui/ui.progressbar.js +++ b/ui/ui.progressbar.js @@ -31,7 +31,7 @@ $.widget("ui.progressbar", { "aria-valuenow": this._value() }); - this.valueDiv = $('<div class="ui-progressbar-value ui-state-default ui-corner-left"></div>').appendTo(this.element); + this.valueDiv = $('<div class="ui-progressbar-value ui-widget-header ui-corner-left"></div>').appendTo(this.element); this._refreshValue(); |