From faa8c5ffa5a1696bec0f120b9cd7dccb02b1ce9a Mon Sep 17 00:00:00 2001 From: Shalimov Anton <solidovic@yandex.ru> Date: Thu, 21 Aug 2014 16:06:39 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B5=D1=89=D1=91=20=D0=BA=D1=80=D1=83=D1=87?= =?UTF-8?q?=D0=B5=20=D1=81=D1=82=D0=B0=D0=BB=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- media/js/event_inspector/event_inspector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/js/event_inspector/event_inspector.js b/media/js/event_inspector/event_inspector.js index e65b6c4d0..6d8c7526f 100644 --- a/media/js/event_inspector/event_inspector.js +++ b/media/js/event_inspector/event_inspector.js @@ -7,7 +7,7 @@ function EventInspector_ShowMsg(text, type){ var MsgDiv = $('.EventInspectorList').append('<div class="EventItem '+ type +'">' + text + '</div>').children().last(); setTimeout( function(){ - MsgDiv.remove(); + MsgDiv.animate({opacity: 0}, 1000, function() {$(this).remove()}); }, 5000 ); -- GitLab