From 0b3f2699f43cf64ecc5353df7b575de7f0a81d15 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 fbed29043a..e858505b27 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)); }