mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-21 02:07:21 +00:00
20 lines
356 B
HTML
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>
|