0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/client/views/editor.js
Robert Jackson 333beb2198 Make exports consitent.
Previously, the exports were somewhat random with some files declaring
local variables then immediately exporting them, and others simply
doing the work needed in the export itself.
2014-06-09 13:58:35 -04:00

7 lines
186 B
JavaScript

var EditorView = Ember.View.extend({
tagName: 'section',
classNames: ['entry-container'],
scrollPosition: 0 // percentage of scroll position
});
export default EditorView;