1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00

Merge pull request #5386 from acburdine/focus-fix

Fix autofocus on post edit
This commit is contained in:
Hannah Wolfe 2015-06-05 13:47:01 +01:00
commit af15be00ef
3 changed files with 2 additions and 4 deletions

View file

@ -6,7 +6,7 @@ import EditorScroll from 'ghost/mixins/ed-editor-scroll';
var Editor;
Editor = Ember.TextArea.extend(EditorAPI, EditorShortcuts, EditorScroll, {
focus: true,
focus: false,
/**
* Tell the controller about focusIn events, will trigger an autosave on a new document

View file

@ -236,7 +236,6 @@ export default Ember.Mixin.create({
},
shouldFocusTitle: Ember.computed.alias('model.isNew'),
shouldFocusEditor: Ember.computed.not('model.isNew'),
actions: {
save: function (options) {

View file

@ -13,8 +13,7 @@
</header>
<section id="entry-markdown-content" class="entry-markdown-content">
{{gh-ed-editor classNames="markdown-editor js-markdown-editor" tabindex="1" spellcheck="true" value=model.scratch
scrollInfo=view.editorScrollInfo focus=shouldFocusEditor focusCursorAtEnd=model.isDirty
setEditor="setEditor" openModal="openModal" onFocusIn="autoSaveNew"}}
scrollInfo=view.editorScrollInfo setEditor="setEditor" openModal="openModal" onFocusIn="autoSaveNew"}}
</section>
</section>