From d4d63d382e5f9fe5971b089c358944eaca061cbf Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Wed, 21 Oct 2020 11:54:35 +0200 Subject: [PATCH] Fix error message still remains even after connection is up again --- api/js/jsapi/egw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/jsapi/egw.js b/api/js/jsapi/egw.js index ae26c8823f..481d2af257 100644 --- a/api/js/jsapi/egw.js +++ b/api/js/jsapi/egw.js @@ -372,7 +372,7 @@ this.loading_prompt('connectionLost', true, '', null); }, egw(window)); window.Offline.on('up', function(){ - jQuery('#egw_message').click(); + jQuery('.close', '#egw_message').click(); this.loading_prompt('connectionLost', false); }, egw(window)); }