0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/client/app/views/settings/content-base.js
Matt Enlow df1c04b8d8 Remove legacy mobile view logic
No issue
- Move editor-base-view mixin into editor/edit view
- Also deletes mobile views and modifies files that were using it
- Helps pave the way for Ember 2.0, where views do not exist
2015-06-14 14:42:21 -07:00

8 lines
153 B
JavaScript

import Ember from 'ember';
var SettingsView = Ember.View.extend({
tagName: 'section',
classNames: ['gh-view']
});
export default SettingsView;