From 03a2051ad76a65647b48a1a71c12184b9c9a050b Mon Sep 17 00:00:00 2001 From: "Fedor A. Fetisov" Date: Tue, 3 Oct 2017 01:41:57 +0300 Subject: [PATCH] Fix bug with disappearing toggle control (Fixes #209) --- src/mibew/js/source/chat_popup.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mibew/js/source/chat_popup.js b/src/mibew/js/source/chat_popup.js index 3292a859..bc6b1257 100644 --- a/src/mibew/js/source/chat_popup.js +++ b/src/mibew/js/source/chat_popup.js @@ -416,6 +416,7 @@ var Mibew = Mibew || {}; } this.iframe.style.display = 'block'; + this.toggleDiv.style.display = 'block'; this.iframe.src = url || this.buildChatUrl(); this.isOpened = true; };