r722 - trunk/ui
r722 - trunk/ui
Author: eduardolundgren
Date: Sat Sep 20 04:11:11 2008
New Revision: 722
Modified:
trunk/ui/ui.progressbar.js
Log:
Progressbar - Source formatting
Modified: trunk/ui/ui.progressbar.js
==============================================================================
--- trunk/ui/ui.progressbar.js (original)
+++ trunk/ui/ui.progressbar.js Sat Sep 20 04:11:11 2008
@@ -19,7 +19,7 @@
var self = this,
options = this.options,
- id = (new Date()).getTime()+Math.random(),
+ id = ((new Date()).getTime() + Math.random()),
text = options.text || '0%';
this.element.addClass("ui-progressbar").width(options.width);
@@ -132,8 +132,8 @@
duration: interval,
easing: options.equation || this.identifier,
step: function(step, b) {
- self.progress((step/options.width)*100);
var timestamp = new Date().getTime(), elapsedTime = (timestamp -
b.startTime);
+ self.progress( (step/options.width) * 100 );
options.interval = interval - elapsedTime;
},
complete: function() {
@@ -177,7 +177,7 @@
}
this.percentState = percentState > 100 ? 100 : percentState;
- this.pixelState = (this.percentState/100)*this.options.width;
+ this.pixelState = (this.percentState/100) * this.options.width;
this.bar.width(this.pixelState);
this.textElement.width(this.pixelState);