diff --git a/media/js/event_inspector/event_inspector.js b/media/js/event_inspector/event_inspector.js index e65b6c4d06bd875599e17fe8e4e7a90609c4f4ac..6d8c7526f0d598b000515bf8ec8843055bf48cd5 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 );