Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
20 Zeilen
418 B
Text
20 Zeilen
418 B
Text
|
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
|
||
|
})
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
});
|