##// END OF EJS Templates
settings: removed not used supervisor views/models....
settings: removed not used supervisor views/models. - this isn't going anywhere, and it's a dead code that has been replaced by the processes page.

File last commit:

r882:d869b56a default
r2325:f18d95e5 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);
}
});