mirror of https://github.com/vector-im/riot-web
Move message count to suffix in title, as requested by @ara4n
parent
74bd28025e
commit
7ea45f9888
|
@ -781,7 +781,7 @@ module.exports = React.createClass({
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn("Failed to set badge count: "+e.message);
|
console.warn("Failed to set badge count: "+e.message);
|
||||||
}
|
}
|
||||||
document.title = (notifCount > 0 ? "["+notifCount+"] " : "")+"Vector";
|
document.title = "Vector"+(notifCount > 0 ? " ["+notifCount+"]" : "");
|
||||||
},
|
},
|
||||||
|
|
||||||
onUserSettingsClose: function() {
|
onUserSettingsClose: function() {
|
||||||
|
|
Loading…
Reference in New Issue