##// END OF EJS Templates
core: use proper event to bootstrap pylons env....
core: use proper event to bootstrap pylons env. - allows to skip this for VCS and API calls in more efficient way. - fixes #5164

File last commit:

r882:d869b56a default
r1309:8a946991 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);
}
});