diff --git a/view/theme/dispy/bottom.tpl b/view/theme/dispy/bottom.tpl index 0bcc3aca41..82f0201703 100644 --- a/view/theme/dispy/bottom.tpl +++ b/view/theme/dispy/bottom.tpl @@ -56,4 +56,16 @@ function checkNotify() { }; setInterval(function () {checkNotify();}, 10 * 1000); } + +$(document).ready(function(){ +var doctitle = document.title; +function checkNotify() { +if(document.getElementById("notify-update").innerHTML != "") +document.title = "("+document.getElementById("notify-update").innerHTML+") " + doctitle; +else +document.title = doctitle; +}; +setInterval(function () {checkNotify();}, 10 * 1000); +}) +