diff options
author | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-09-20 04:22:53 +0000 |
---|---|---|
committer | Eduardo Lundgren <eduardolundgren@gmail.com> | 2008-09-20 04:22:53 +0000 |
commit | 99f8a711decebc577f3abe213cd1c8d8f0a0a364 (patch) | |
tree | eba652e10e179cb04add92239e4df5f5dca56662 /ui | |
parent | 2f842cedd686ebe2b8a795ff60115b9a473e46b5 (diff) | |
download | jquery-ui-99f8a711decebc577f3abe213cd1c8d8f0a0a364.tar.gz jquery-ui-99f8a711decebc577f3abe213cd1c8d8f0a0a364.zip |
Progressbar - Added suport for animated equations (easeInOutQuint, ...)
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.progressbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.progressbar.js b/ui/ui.progressbar.js index 34c860c55..e79579503 100644 --- a/ui/ui.progressbar.js +++ b/ui/ui.progressbar.js @@ -130,7 +130,7 @@ $.widget("ui.progressbar", { }, { duration: interval, - easing: this.identifier, + easing: options.equation || this.identifier, step: function(step, b) { self.progress((step/options.width)*100); var timestamp = new Date().getTime(), elapsedTime = (timestamp - b.startTime); |