fix error updating pagetitle with notify count if not logged in locally (no notify count available)

This commit is contained in:
friendica 2013-07-21 18:34:15 -07:00
parent 19f674c29d
commit 400f3baee9

View file

@ -86,13 +86,16 @@ $('.savedsearchterm').hover(
}); });
$(document).ready(function(){ $(document).ready(function(){
var doctitle = document.title; var doctitle = document.title;
function checkNotify() { function checkNotify() {
if(document.getElementById("notify-update").innerHTML != "") var notifyUpdateElem = document.getElementById('notify-update');
document.title = "("+document.getElementById("notify-update").innerHTML+") " + doctitle; if(typeof(notifyUpdateElem) != 'undefined') {
else if(notifyUpdateElem.innerHTML != "")
document.title = doctitle; document.title = "("+notifyUpdateElem.innerHTML+") " + doctitle;
}; else
setInterval(function () {checkNotify();}, 10 * 1000); document.title = doctitle;
}) }
};
setInterval(function () {checkNotify();}, 10 * 1000);
});