summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-19 11:05:43 +0100
committerAndrew Dolgov <[email protected]>2008-05-19 11:05:43 +0100
commit673c9946741ab7fcc9bcee02c25c26d295e93693 (patch)
treea34ced7aa327e93ece4a6e16c16336d41432ca7e /functions.js
parentf60cc76106ba6e7401ace11d364f609e9189e35d (diff)
progressbar tweaks
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/functions.js b/functions.js
index 6fe449239..1e13d8e0e 100644
--- a/functions.js
+++ b/functions.js
@@ -1680,11 +1680,13 @@ function loading_set_progress(p) {
var o = document.getElementById("l_progress_i");
+// o.style.width = (p * 2) + "px";
+
new Effect.Scale(o, p, {
scaleY : false,
scaleFrom : last_progress_point,
scaleMode: { originalWidth : 200 },
- queue: { position: 'end', scope: 'LSP-Q', limit: 1 } });
+ queue: { position: 'end', scope: 'LSP-Q', limit: 3 } });
last_progress_point = p;