##// END OF EJS Templates
Added tag v4.7.1 for changeset 7198bdec29c2
Added tag v4.7.1 for changeset 7198bdec29c2

File last commit:

r882:d869b56a default
r1641:f90c96ac stable
Show More
rhodecode-favicon.js
20 lines | 425 B | application/javascript | JavascriptLexer
favicon: added favicon notifications
r882 Polymer({
is: 'rhodecode-favicon',
properties: {
favicon: Object,
counter: {
type: Number,
observer: '_handleCounter'
}
},
ready: function () {
this.favicon = new Favico({
type: 'rectangle',
animation: 'none'
});
},
_handleCounter: function (newVal, oldVal) {
this.favicon.badge(this.counter);
}
});