summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-13 13:51:44 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-13 13:51:44 +0000
commit40aaa0dc886d8fd457657fd8ffc6dd794447ca07 (patch)
tree69ccfcd9c660f71a4e6d38a7ea968acfc1ca7814 /roundcubemail/program/js/app.js
parent4f7e351fce84ff0a5e43502cfea7bc4d3b4e382a (diff)
- don't lock interface when loading headers
git-svn-id: https://svn.roundcube.net/trunk@1783 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index a6d88aa85..f4f4fc475 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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);
}
}