1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-21 02:07:21 +00:00
Files
frontend/src/components/display-time.html
2016-07-16 23:19:49 -07:00

20 lines
356 B
HTML

<link rel="import" href="../../bower_components/polymer/polymer.html">
<script>
Polymer({
is: 'display-time',
properties: {
dateObj: {
type: Object,
observer: 'timeChanged',
},
},
timeChanged: function (dateObj) {
var root = Polymer.dom(this);
root.innerHTML = window.moment(dateObj).format('LT');
},
});
</script>