##// END OF EJS Templates
strip: improved html output....
strip: improved html output. - consistent formatting - nicer messages on success/errors

File last commit:

r882:d869b56a default
r1662:db3a7961 default
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);
}
});