Window title rebranded

This commit is contained in:
thegamer 2017-03-23 17:45:06 +01:00
parent a927644bd1
commit ac30572b63

View file

@ -84,12 +84,12 @@
if (count > 0) {
extension.navigator.setBadgeText(count);
if (inboxOpened === true && appWindow) {
appWindow.contentWindow.document.title = "Signal (" + count + ")";
appWindow.contentWindow.document.title = "Cable (" + count + ")";
}
} else {
extension.navigator.setBadgeText("");
if (inboxOpened === true && appWindow) {
appWindow.contentWindow.document.title = "Signal";
appWindow.contentWindow.document.title = "Cable";
}
}
};