Fix setUnreadCount

pull/749/head
lilia 8 years ago committed by Scott Nonnenberg
parent 75dbc27cfa
commit 3f5505907f
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -61,14 +61,10 @@
window.setUnreadCount = function(count) {
if (count > 0) {
extension.navigator.setBadgeText(count);
if (inboxOpened === true && appWindow) {
appWindow.contentWindow.document.title = "Signal (" + count + ")";
}
window.document.title = "Signal (" + count + ")";
} else {
extension.navigator.setBadgeText("");
if (inboxOpened === true && appWindow) {
appWindow.contentWindow.document.title = "Signal";
}
window.document.title = "Signal";
}
};

Loading…
Cancel
Save