Skip to content

Commit a69b1a9

Browse files
arschmitzscottgonzalez
authored andcommitted
Progressbar: Fix line length issues
Ref gh-1690
1 parent c5eca74 commit a69b1a9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ui/widgets/progressbar.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ return $.widget( "ui.progressbar", {
128128
},
129129

130130
_percentage: function() {
131-
return this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
131+
return this.indeterminate ?
132+
100 :
133+
100 * ( this.options.value - this.min ) / ( this.options.max - this.min );
132134
},
133135

134136
_refreshValue: function() {

0 commit comments

Comments
 (0)