1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/components/custom-wizard-field-time.js.es6

24 Zeilen
468 B
Text

2020-07-16 05:26:56 +02:00
import Component from "@ember/component";
import { observes } from "discourse-common/utils/decorators";
2020-07-16 05:26:56 +02:00
export default Component.extend({
2023-03-22 11:38:18 +01:00
classNameBindings: ["fieldClass"],
@observes("time")
2020-07-16 05:26:56 +02:00
setValue() {
this.set("field.value", this.time.format(this.field.format));
2020-07-16 05:26:56 +02:00
},
2020-07-16 05:26:56 +02:00
actions: {
onChange(value) {
this.set(
"time",
2020-07-16 05:26:56 +02:00
moment({
hours: value.hours,
minutes: value.minutes,
2020-07-16 05:26:56 +02:00
})
);
},
},
});