mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
d0c151be70
closes #5336 - creates gh-form-group component to handle form group status - refactors current validation methods to work on a per-property basis - adds gh-error-message component to render error message - removes (comments out) tests that pertain to the old notifications until the new inline validation is added
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
import Ember from 'ember';
|
|
import TextInputMixin from 'ghost/mixins/text-input';
|
|
|
|
var Input = Ember.TextField.extend(TextInputMixin, {
|
|
classNames: 'gh-input'
|
|
});
|
|
|
|
export default Input;
|