summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-19 09:12:54 +0100
committerAndrew Dolgov <[email protected]>2008-05-19 09:12:54 +0100
commitfca95d5f9973cb95a789d244bfebbdcd21ac3332 (patch)
treeb62c6cfe01339acb7faf94a25bf075c058a89c49 /functions.js
parent995094517506b5565bbbc22aff9d25e7a0ae08d7 (diff)
progressbar fixes
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 b0665b174..6fe449239 100644
--- a/functions.js
+++ b/functions.js
@@ -1674,7 +1674,9 @@ function focus_element(id) {
function loading_set_progress(p) {
try {
- if (!Element.visible("overlay")) return;
+ if (p < last_progress_point || !Element.visible("overlay")) return;
+
+ debug("<b>loading_set_progress : " + p + " (" + last_progress_point + ")</b>");
var o = document.getElementById("l_progress_i");