From: Kris Borchers Date: Fri, 30 Nov 2012 04:12:02 +0000 (-0600) Subject: Progressbar: Create and destroy indeterminate overlay as needed and code cleanup. X-Git-Tag: 1.10.0-beta.1~63 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f2ee4c51aa919c7bc3db9f93a4f79479ef062bf9;p=jquery-ui.git Progressbar: Create and destroy indeterminate overlay as needed and code cleanup. --- diff --git a/ui/jquery.ui.progressbar.js b/ui/jquery.ui.progressbar.js index 0b1ee8aba..0f97bc3fe 100644 --- a/ui/jquery.ui.progressbar.js +++ b/ui/jquery.ui.progressbar.js @@ -36,7 +36,7 @@ $.widget( "ui.progressbar", { "aria-valuenow": this.options.value }); - this.valueDiv = $( "
" ) + this.valueDiv = $( "
" ) .appendTo( this.element ); this.oldValue = this.options.value; @@ -114,11 +114,29 @@ $.widget( "ui.progressbar", { _refreshValue: function() { var value = this.options.value, - percentage = this._percentage(), - overlay = this.valueDiv.children().eq( 0 ); + percentage = this._percentage(); - overlay.toggleClass( "ui-progressbar-overlay", this.indeterminate ); - this.valueDiv.toggleClass( "ui-progressbar-indeterminate", this.indeterminate ); + this.valueDiv + .toggle( this.indeterminate || value > this.min ) + .toggleClass( "ui-corner-right", value === this.options.max ) + .toggleClass( "ui-progressbar-indeterminate", this.indeterminate ) + .width( percentage.toFixed(0) + "%" ); + + if ( this.indeterminate ) { + this.element.removeAttr( "aria-valuemax" ).removeAttr( "aria-valuenow" ); + if ( !this.overlayDiv ) { + this.overlayDiv = $( "
" ).appendTo( this.valueDiv ); + } + } else { + this.element.attr({ + "aria-valuemax": this.options.max, + "aria-valuenow": value + }); + if ( this.overlayDiv ) { + this.overlayDiv.remove(); + this.overlayDiv = null; + } + } if ( this.oldValue !== value ) { this.oldValue = value; @@ -127,18 +145,6 @@ $.widget( "ui.progressbar", { if ( value === this.options.max ) { this._trigger( "complete" ); } - - this.valueDiv - .toggle( this.indeterminate || value > this.min ) - .toggleClass( "ui-corner-right", value === this.options.max ) - .width( percentage.toFixed(0) + "%" ); - if ( this.indeterminate ) { - this.element.removeAttr( "aria-valuemax" ); - this.element.removeAttr( "aria-valuenow" ); - } else { - this.element.attr( "aria-valuemax", this.options.max ); - this.element.attr( "aria-valuenow", value ); - } } });