ember-cli-materialize
Version:
An ember-cli addon for using Materialize (CSS Framework based on Material Design) in Ember applications.
14 lines (11 loc) • 325 B
JavaScript
import MaterializeInputField from './md-input-field';
import layout from '../templates/components/md-input';
export default MaterializeInputField.extend({
layout,
type: 'text',
didInsertElement() {
this._super(...arguments);
// make sure the label moves when a value is bound.
this._setupLabel();
}
});