]> git.mxchange.org Git - friendica.git/commitdiff
Add titlebar notifications to Dispy.
authorThomas Willingham <founder@kakste.com>
Mon, 17 Sep 2012 13:54:40 +0000 (14:54 +0100)
committerThomas Willingham <founder@kakste.com>
Mon, 17 Sep 2012 13:54:40 +0000 (14:54 +0100)
view/theme/dispy/bottom.tpl

index 0bcc3aca4187b03931934e11a0ac071db4d73a24..82f02017031d14afe3cfbfc2e1ff49b6c9e3773d 100644 (file)
@@ -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);
+})
+
 </script>