Skip to content

Commit

Permalink
this is handled by Tinycon now
Browse files Browse the repository at this point in the history
Regardless, this is OS and application specific. There's no possible way
we can support all of these combinations.
  • Loading branch information
slusarz committed Jun 5, 2014
1 parent e398736 commit 67ba9c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions imp/js/dimpbase.js
Expand Up @@ -2139,10 +2139,6 @@ var DimpBase = {
elt.store('u', unseen);
}

if (window.fluid && elt.retrieve('mbox') == this.INBOX) {
window.fluid.setDockBadge(unseen ? unseen : '');
}

elt.down('A').update((unseen > 0) ?
new Element('STRONG').insert(elt.retrieve('l')).insert(' ').insert(new Element('SPAN', { className: 'count', dir: 'ltr' }).insert('(' + unseen + ')')) :
elt.retrieve('l'));
Expand Down
6 changes: 0 additions & 6 deletions imp/js/mailbox.js
Expand Up @@ -447,12 +447,6 @@ var ImpMailbox = {
} else {
document.observe('change', this.changeHandler.bindAsEventListener(this));
}

if (window.fluid) {
try {
window.fluid.setDockBadge(this.unread);
} catch (e) {}
}
}

};
Expand Down

0 comments on commit 67ba9c9

Please sign in to comment.