23 Zeilen
494 B
JavaScript
23 Zeilen
494 B
JavaScript
import Component from "@ember/component";
|
|
import { observes } from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
layoutName: "wizard/templates/components/wizard-field-time",
|
|
|
|
@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,
|
|
})
|
|
);
|
|
},
|
|
},
|
|
});
|