progressbar fixes

This commit is contained in:
Andrew Dolgov 2008-05-19 09:12:54 +01:00
parent 9950945175
commit fca95d5f99
2 changed files with 6 additions and 4 deletions

View file

@ -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");

View file

@ -325,8 +325,6 @@ function init() {
try {
loading_set_progress(30);
// this whole shebang is based on http://www.birnamdesigns.com/misc/busted2.html
if (arguments.callee.done) return;
@ -346,6 +344,8 @@ function init() {
var params = "&ua=" + param_escape(navigator.userAgent);
loading_set_progress(30);
new Ajax.Request("backend.php?op=rpc&subop=sanityCheck" + params, {
onComplete: function(transport) {
backend_sanity_check_callback(transport);
@ -424,7 +424,7 @@ function init_second_stage() {
setTimeout('updateFeedList(false, false)', 50);
debug("second stage ok");
loading_set_progress(60);
} catch (e) {