Ghost/ghost/admin/app/components/gh-input.js
Austin Burdine 6ee77a712a convert inputs to one-way inputs
no issue
- moves all inputs to use the data-down-actions-up component paradigm
2016-06-18 07:44:23 -04:00

7 lines
219 B
JavaScript

import OneWayInput from 'ember-one-way-controls/components/one-way-input';
import TextInputMixin from 'ghost-admin/mixins/text-input';
export default OneWayInput.extend(TextInputMixin, {
classNames: 'gh-input'
});