0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-field-time.js.es6
2020-07-16 13:26:56 +10:00

20 Zeilen
Kein EOL
418 B
JavaScript

import Component from "@ember/component";
import { observes } from 'discourse-common/utils/decorators';
export default Component.extend({
@observes('time')
setValue() {
this.set('field.value', this.time.format(this.field.format));
},
actions: {
onChange(value) {
this.set('time',
moment({
hours: value.hours,
minutes: value.minutes
})
)
}
}
});