mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
aa54821e64
- Moved `new` route into `editor` resource (`editor.new`) - Moved the current editor controller, view, and route to `editor.edit` - Added `editor.index`, which automatically transitions into `editor.new` - Moved controllers, views, templates, and routes to match new router config. Also changed links to `editor` into `editor.new` and `editor.edit` as appropriate.
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
var EditorView = Ember.View.extend({
|
|
tagName: 'section',
|
|
classNames: ['entry-container'],
|
|
scrollPosition: 0 // percentage of scroll position
|
|
});
|
|
|
|
export default EditorView;
|