Skip to content
Snippets Groups Projects
Commit f7d315f1 authored by PavelBegunkov's avatar PavelBegunkov
Browse files

fix

parent 0421575c
Branches
No related merge requests found
......@@ -10,6 +10,7 @@ $(function()
inspectorList.on('click', 'div.EventItem', function()
{
$(this).remove();
//--inspectorCounter;
})
.on('mouseenter', 'div.EventItem.success', function()
{
......@@ -49,13 +50,14 @@ function EventInspector_ShowMsg(text, type)
var MsgDiv = inspectorList.append('<div class="EventItem '+ type +'">' + text + '</div>').children().last();
setTimeout(
function(){
--inspectorCounter;
MsgDiv.animate(
{opacity: 0},
1000,
function()
{
$(this).remove();
--inspectorCounter;
}
);
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment