summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-08-04 08:12:36 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-08-04 08:12:36 +0000
commit339f6b7512520e7ad1c07c00adb0a18073e67300 (patch)
tree9fd0a6bdbc7ea1077f6c68ea2f786c82a0603fad
parent32fe780f291d7de3b2791dbec4d7f151eaefec55 (diff)
- Add abort_request() function
git-svn-id: https://svn.roundcube.net/trunk@5021 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/js/app.js21
1 files changed, 13 insertions, 8 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 66cae80d0..62e0fb0a7 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -3434,10 +3434,8 @@ function rcube_webmail()
if (this.gui_objects.qsearchbox)
this.gui_objects.qsearchbox.value = '';
- if (this.env.qsearch) {
- this.set_busy(this.env.qsearch.lock, false);
- this.env.qsearch.request.abort();
- }
+ if (this.env.qsearch)
+ this.abort_request(this.env.qsearch);
this.env.qsearch = null;
this.env.search_request = null;
@@ -3760,10 +3758,8 @@ function rcube_webmail()
if (!ac)
return;
- for (i=0, len=ac.locks.length; i<len; i++) {
- this.hide_message(ac.locks[i]); // hide loading message
- ac.requests[i].abort(); // abort ajax request
- }
+ for (i=0, len=ac.locks.length; i<len; i++)
+ this.abort_request({request: ac.requests[i], lock: ac.locks[i]});
this.ksearch_data = null;
}
@@ -5664,6 +5660,15 @@ function rcube_webmail()
});
};
+ // aborts ajax request
+ this.abort_request = function(r)
+ {
+ if (r.request)
+ r.request.abort();
+ if (r.lock)
+ this.set_busy(r.lock, false);
+ };
+
// handle HTTP response
this.http_response = function(response)
{