##// END OF EJS Templates
partial-renderer: use package resource format for templates....
partial-renderer: use package resource format for templates. - it's faster then lookup - doesn't require any special configuration changes

File last commit:

r882:d869b56a default
r2313:d272914f 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);
}
});