##// END OF EJS Templates
ux: add hidden comments indicators plus style tweaks...
ux: add hidden comments indicators plus style tweaks * add hidden comments indicator in diff lines * make no new line at end of file marker red * fixes bug where show/hide comments was not changing message refs #4311

File last commit:

r882:d869b56a default
r1157:ac063abc default
Show More
rhodecode-favicon.js
20 lines | 425 B | application/javascript | JavascriptLexer
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);
}
});