summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/googiespell.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-13 18:44:41 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-13 18:44:41 +0000
commitf8562dc439bfe3bb0d3dc3dab36503673f7a33ca (patch)
tree53abaf98baac3cafc2cd902b965e00383dc166eb /roundcubemail/program/js/googiespell.js
parent762b23edfb748acc9d4e95305989b69057fb9c42 (diff)
- Improve displaying of UI messages (#1486977)
git-svn-id: https://svn.roundcube.net/trunk@4083 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/googiespell.js')
-rw-r--r--roundcubemail/program/js/googiespell.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/googiespell.js b/roundcubemail/program/js/googiespell.js
index aaea16c47..8892c63ea 100644
--- a/roundcubemail/program/js/googiespell.js
+++ b/roundcubemail/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')