diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-30 22:52:49 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-04-13 11:31:44 -0400 |
commit | a69b1a9eb860f62060d668eeebf04195618f99f2 (patch) | |
tree | ad63ae84db3422b6b7e1241ab533ef4bcfd18711 /ui/widgets/progressbar.js | |
parent | c5eca7443c6d6d425b08c4c6d93e77ccc2702fdc (diff) | |
download | jquery-ui-a69b1a9eb860f62060d668eeebf04195618f99f2.tar.gz jquery-ui-a69b1a9eb860f62060d668eeebf04195618f99f2.zip |
Progressbar: Fix line length issues
Ref gh-1690
Diffstat (limited to 'ui/widgets/progressbar.js')
-rw-r--r-- | ui/widgets/progressbar.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/widgets/progressbar.js b/ui/widgets/progressbar.js index 6afba892e..ba4542583 100644 --- a/ui/widgets/progressbar.js +++ b/ui/widgets/progressbar.js @@ -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() { |