Move message count to suffix in title, as requested by @ara4n

This commit is contained in:
David Baker 2016-01-27 18:02:15 +00:00
parent 74bd28025e
commit 7ea45f9888

View file

@ -781,7 +781,7 @@ module.exports = React.createClass({
} catch (e) {
console.warn("Failed to set badge count: "+e.message);
}
document.title = (notifCount > 0 ? "["+notifCount+"] " : "")+"Vector";
document.title = "Vector"+(notifCount > 0 ? " ["+notifCount+"]" : "");
},
onUserSettingsClose: function() {