mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
double notification is not really something we need.
This commit is contained in:
parent
54d8c963d0
commit
eca2931a63
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ Discourse = Ember.Application.createWithMixins({
|
||||||
$('title').text(title);
|
$('title').text(title);
|
||||||
|
|
||||||
var notifyCount = this.get('notifyCount');
|
var notifyCount = this.get('notifyCount');
|
||||||
if (notifyCount > 0) {
|
if (notifyCount > 0 && !Discourse.SiteSettings.dynamic_favicon) {
|
||||||
title = "(" + notifyCount + ") " + title;
|
title = "(" + notifyCount + ") " + title;
|
||||||
}
|
}
|
||||||
// chrome bug workaround see: http://stackoverflow.com/questions/2952384/changing-the-window-title-when-focussing-the-window-doesnt-work-in-chrome
|
// chrome bug workaround see: http://stackoverflow.com/questions/2952384/changing-the-window-title-when-focussing-the-window-doesnt-work-in-chrome
|
||||||
|
|
Loading…
Reference in a new issue