diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-11-22 12:40:53 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-11-22 12:40:53 +0100 |
commit | b82fccfc693416a362b9f81fbb288e57f71680be (patch) | |
tree | 2566d9ec5eb2f0180a641d0fed955d4357844f86 | |
parent | 067d3dc44a719558c418bbe72b0948aaaa886633 (diff) |
Display loading message when loading identity frame
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index e6c580dd8..28ee96b9f 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5547,9 +5547,8 @@ function rcube_webmail() target = win; } - if (action && (id || action == 'add-identity')) { - this.set_busy(true); - this.location_href(url, target); + if (id || action == 'add-identity') { + this.location_href(url, target, true); } return true; |