mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Move message count to suffix in title, as requested by @ara4n
This commit is contained in:
parent
74bd28025e
commit
7ea45f9888
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue