##// END OF EJS Templates
user: deprecated usage of api_keys....
user: deprecated usage of api_keys. - additionally we don't load secrets as they are never used (and are expensive to fetch) - simplify fetching of details improves performance

File last commit:

r882:d869b56a default
r1953:9d49c7f1 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);
}
});