diff options
author | thomascube <thomas@roundcube.net> | 2012-04-11 16:19:14 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-04-11 16:19:14 +0000 |
commit | 194b45c673ba55f68759a8ba1117e4052cac2dfc (patch) | |
tree | ea3193a145e6e92016d9af085f63a5241e88d7a7 /program/include/rcube_json_output.php | |
parent | 3d5240b70d39b398018c0c04c420fc86da65d41a (diff) |
Keep improvement from r6060: show 'loading...' message when redirecting
Diffstat (limited to 'program/include/rcube_json_output.php')
-rw-r--r-- | program/include/rcube_json_output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_json_output.php b/program/include/rcube_json_output.php index 99f08f5c9..f062d4b71 100644 --- a/program/include/rcube_json_output.php +++ b/program/include/rcube_json_output.php @@ -212,7 +212,7 @@ class rcube_json_output public function redirect($p = array(), $delay = 1) { $location = rcmail::get_instance()->url($p); - $this->remote_response("window.setTimeout(\"location.href='{$location}'\", $delay);"); + $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", JS_OBJECT_NAME, $location, $delay)); exit; } |