]> git.mxchange.org Git - friendica.git/commitdiff
Corrected titlebar notifications in Diabook
authortomtom84 <thomas.bierey@gmx.de>
Mon, 17 Sep 2012 15:54:07 +0000 (17:54 +0200)
committertomtom84 <thomas.bierey@gmx.de>
Mon, 17 Sep 2012 15:54:07 +0000 (17:54 +0200)
view/theme/diabook/bottom.tpl

index 0ab7de78e769f45ca3187603b6f84b58f1357e15..08952aad650ba1509dea09daffbaf17d0e1ba355 100644 (file)
@@ -130,7 +130,7 @@ $(document).ready(function() {
        $(".comment-edit-bb-" + id).hide();
        }
        
-       $(document).ready(function(){
+       /*$(document).ready(function(){
        var doctitle = document.title;
        function checkNotify() {
        if(document.getElementById("notify-update").innerHTML != "")
@@ -139,7 +139,17 @@ $(document).ready(function() {
        document.title = doctitle;
        };
        setInterval(function () {checkNotify();}, 10 * 1000);
-       })
-
-       
+       })*/
+</script>
+<script>
+var pagetitle = null;
+$("nav").bind('nav-update',  function(e,data){
+  if (pagetitle==null) pagetitle = document.title;
+  var count = $(data).find('notif').attr('count');
+  if (count>0) {
+    document.title = "("+count+") "+pagetitle;
+  } else {
+    document.title = pagetitle;
+  }
+});
 </script>