0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/views/editor/edit.js

9 lines
208 B
JavaScript
Raw Normal View History

import EditorViewMixin from 'ghost/mixins/editor-base-view';
var EditorView = Ember.View.extend(EditorViewMixin, {
tagName: 'section',
classNames: ['entry-container']
});
export default EditorView;