mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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;
|