|
|
|
@ -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";
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|