Progressbar: Fix line length issues

Ref gh-1690
This commit is contained in:
Alexander Schmitz 2016-03-30 22:52:49 -04:00 committed by Scott González
parent c5eca7443c
commit a69b1a9eb8

View File

@ -128,7 +128,9 @@ return $.widget( "ui.progressbar", {
},
_percentage: function() {
return this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
return this.indeterminate ?
100 :
100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
},
_refreshValue: function() {