decreasing bubble display time in themes from 10s to 5s

This commit is contained in:
Tobias Diekershoff 2015-02-19 21:24:09 +01:00
parent 7d7096f489
commit 985d771b13
3 changed files with 4 additions and 4 deletions

View File

@ -210,7 +210,7 @@
}); });
eSysmsg.children("info").each(function(){ eSysmsg.children("info").each(function(){
text = $(this).text(); 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) { if(livetime) {
clearTimeout(livetime); clearTimeout(livetime);
} }
livetime = setTimeout(liveUpdate, 10000); livetime = setTimeout(liveUpdate, 5000);
return; return;
} }
if(livetime != null) if(livetime != null)

View File

@ -293,7 +293,7 @@
if(livetime) { if(livetime) {
clearTimeout(livetime); clearTimeout(livetime);
} }
livetime = setTimeout(liveUpdate, 10000); livetime = setTimeout(liveUpdate, 5000);
return; return;
} }
if(livetime != null) if(livetime != null)

View File

@ -285,7 +285,7 @@
if(livetime) { if(livetime) {
clearTimeout(livetime); clearTimeout(livetime);
} }
livetime = setTimeout(liveUpdate, 10000); livetime = setTimeout(liveUpdate, 5000);
return; return;
} }
if(livetime != null) if(livetime != null)