From 682e88710bc6b7ee827178df2b74a8e98a00f450 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 17 May 2017 13:41:38 +0200 Subject: [PATCH] Display loading message when going to another page (#5541) --- program/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index bbb33570e..2fafb8085 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -8246,8 +8246,8 @@ function rcube_webmail() this.redirect = function(url, lock) { - if (lock || lock === null) - this.set_busy(true); + if (lock !== false) + this.set_busy(true, 'loading'); if (this.is_framed()) { parent.rcmail.redirect(url, lock);