mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
df1c04b8d8
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
8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
import Ember from 'ember';
|
|
|
|
var SettingsView = Ember.View.extend({
|
|
tagName: 'section',
|
|
classNames: ['gh-view']
|
|
});
|
|
|
|
export default SettingsView;
|