From 608aa04e05e934354243a05a05d04ffb30d37fb4 Mon Sep 17 00:00:00 2001 From: Eduard Kuzmenko Date: Sat, 27 Feb 2021 17:05:21 +0400 Subject: [PATCH] Clear stickers helper after hiding --- src/components/chat/stickersHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/chat/stickersHelper.ts b/src/components/chat/stickersHelper.ts index 99454be8..ec633b4c 100644 --- a/src/components/chat/stickersHelper.ts +++ b/src/components/chat/stickersHelper.ts @@ -25,9 +25,9 @@ export default class StickersHelper { if(this.lastEmoticon && !emoticon) { if(this.container) { - SetTransition(this.container, 'is-visible', false, 200/* , () => { + SetTransition(this.container, 'is-visible', false, 200, () => { this.stickersContainer.innerHTML = ''; - } */); + }); } }