summaryrefslogtreecommitdiff
path: root/program/js/googiespell.js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-10-13 18:44:41 +0000
committeralecpl <alec@alec.pl>2010-10-13 18:44:41 +0000
commitad334a12579f21e4e04a47e257b9d0ac71d50b98 (patch)
treef9fb64d10325895c71c6656ad0ea10940cca25a7 /program/js/googiespell.js
parent48e8b31b1eaa0bdadd39603150ae8c522d394664 (diff)
- Improve displaying of UI messages (#1486977)
Diffstat (limited to 'program/js/googiespell.js')
-rw-r--r--program/js/googiespell.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/googiespell.js b/program/js/googiespell.js
index aaea16c47..8892c63ea 100644
--- a/program/js/googiespell.js
+++ b/program/js/googiespell.js
@@ -977,13 +977,13 @@ this.removeIndicator = function(elm) {
//$(this.indicator).remove();
// roundcube mod.
if (window.rcmail)
- rcmail.set_busy(false);
+ rcmail.set_busy(false, null, this.rc_msg_id);
};
this.appendIndicator = function(elm) {
// modified by roundcube
if (window.rcmail)
- rcmail.set_busy(true, 'checking');
+ this.rc_msg_id = rcmail.set_busy(true, 'checking');
/*
this.indicator = document.createElement('img');
$(this.indicator).attr('src', this.img_dir + 'indicator.gif')