0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/app/views/posts/index.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

7 lines
138 B
JavaScript

import Ember from 'ember';
var PostsIndexView = Ember.View.extend({
classNames: ['no-posts-box']
});
export default PostsIndexView;