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(){
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);
})
$(document).ready(function(){
var doctitle = document.title;
function checkNotify() {
var notifyUpdateElem = document.getElementById('notify-update');
if(typeof(notifyUpdateElem) != 'undefined') {
if(notifyUpdateElem.innerHTML != "")
document.title = "("+notifyUpdateElem.innerHTML+") " + doctitle;
else
document.title = doctitle;
}
};
setInterval(function () {checkNotify();}, 10 * 1000);
});