mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -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
7 lines
138 B
JavaScript
7 lines
138 B
JavaScript
import Ember from 'ember';
|
|
|
|
var PostsIndexView = Ember.View.extend({
|
|
classNames: ['no-posts-box']
|
|
});
|
|
|
|
export default PostsIndexView;
|