You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Move message count to suffix in title, as requested by @ara4n
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user