mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Progressbar: Fix line length issues
Ref gh-1690
This commit is contained in:
parent
c5eca7443c
commit
a69b1a9eb8
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user