We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5eca74 commit a69b1a9Copy full SHA for a69b1a9
ui/widgets/progressbar.js
@@ -128,7 +128,9 @@ return $.widget( "ui.progressbar", {
128
},
129
130
_percentage: function() {
131
- return this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
+ return this.indeterminate ?
132
+ 100 :
133
+ 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
134
135
136
_refreshValue: function() {
0 commit comments