summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-09-13 13:51:44 +0000
committeralecpl <alec@alec.pl>2008-09-13 13:51:44 +0000
commita980cb857596200ac1bd5075d0959f0fb6a4fd02 (patch)
tree0a442a4f7020e01ad45435770e0457bff4bacd5b
parent51f55bd6d2f5cbc4f9c92dd3340b5d1397cec89a (diff)
- don't lock interface when loading headers
-rw-r--r--program/js/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index a6d88aa85..f4f4fc475 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3683,6 +3683,7 @@ function rcube_webmail()
}
};
+
// display all-headers row and fetch raw message headers
this.load_headers = function(elem)
{
@@ -3697,7 +3698,7 @@ function rcube_webmail()
// fetch headers only once
if (!this.gui_objects.all_headers_box.innerHTML)
{
- this.set_busy(true, 'loading');
+ this.display_message(this.get_label('loading'), 'loading', true);
this.http_post('headers', '_uid='+this.env.uid);
}
}