rhodecode-favicon.html
29 lines
| 770 B
| text/html
|
HtmlLexer
r882 | <link rel="import" href="../../../../../../bower_components/polymer/polymer.html"> | |||
<dom-module id="rhodecode-favicon"> | ||||
<template> | ||||
</template> | ||||
r3149 | <script> | |||
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); | ||||
} | ||||
}); | ||||
</script> | ||||
r882 | </dom-module> | |||