Merge pull request #1408 from tobiasd/issue885
decreasing bubble display time in themes from 10s to 5s
This commit is contained in:
commit
7e42315d9c
|
@ -210,7 +210,7 @@
|
|||
});
|
||||
eSysmsg.children("info").each(function(){
|
||||
text = $(this).text();
|
||||
$.jGrowl(text, { sticky: false, theme: 'info', life: 10000 });
|
||||
$.jGrowl(text, { sticky: false, theme: 'info', life: 5000 });
|
||||
});
|
||||
|
||||
});
|
||||
|
@ -290,7 +290,7 @@
|
|||
if(livetime) {
|
||||
clearTimeout(livetime);
|
||||
}
|
||||
livetime = setTimeout(liveUpdate, 10000);
|
||||
livetime = setTimeout(liveUpdate, 5000);
|
||||
return;
|
||||
}
|
||||
if(livetime != null)
|
||||
|
|
|
@ -293,7 +293,7 @@
|
|||
if(livetime) {
|
||||
clearTimeout(livetime);
|
||||
}
|
||||
livetime = setTimeout(liveUpdate, 10000);
|
||||
livetime = setTimeout(liveUpdate, 5000);
|
||||
return;
|
||||
}
|
||||
if(livetime != null)
|
||||
|
|
|
@ -285,7 +285,7 @@
|
|||
if(livetime) {
|
||||
clearTimeout(livetime);
|
||||
}
|
||||
livetime = setTimeout(liveUpdate, 10000);
|
||||
livetime = setTimeout(liveUpdate, 5000);
|
||||
return;
|
||||
}
|
||||
if(livetime != null)
|
||||
|
|
Loading…
Reference in New Issue
Block a user