2015-06-13 17:34:09 +03:00
|
|
|
{{#gh-editor editorScrollInfo=editorScrollInfo as |ghEditor|}}
|
|
|
|
<header class="view-header">
|
|
|
|
{{#gh-view-title classNames="gh-editor-title" openMobileMenu="openMobileMenu"}}
|
|
|
|
{{gh-trim-focus-input type="text" id="entry-title" class="gh-input" placeholder="Your Post Title" value=model.titleScratch
|
|
|
|
tabindex="1" focus=shouldFocusTitle}}
|
|
|
|
{{/gh-view-title}}
|
|
|
|
<section class="view-actions">
|
|
|
|
<button type="button" class="post-settings" {{action "openSettingsMenu"}}>
|
|
|
|
<i class="icon-settings"></i>
|
|
|
|
</button>
|
|
|
|
{{gh-editor-save-button
|
|
|
|
isPublished=model.isPublished
|
|
|
|
willPublish=willPublish
|
|
|
|
postOrPage=postOrPage
|
|
|
|
isNew=model.isNew
|
|
|
|
save="save"
|
|
|
|
setSaveType="setSaveType"
|
|
|
|
delete="openDeleteModal"
|
2015-08-10 18:43:49 +03:00
|
|
|
submitting=submitting
|
2015-06-13 17:34:09 +03:00
|
|
|
}}
|
|
|
|
</section>
|
|
|
|
</header>
|
2015-06-03 17:44:12 +03:00
|
|
|
|
2015-06-13 17:34:09 +03:00
|
|
|
<section class="view-container view-editor">
|
|
|
|
<section class="entry-markdown js-entry-markdown">
|
|
|
|
<header class="floatingheader">
|
|
|
|
<span>Markdown</span>
|
|
|
|
<a class="markdown-help" href="" {{action "openModal" "markdown"}}><i class="icon-markdown"></i></a>
|
|
|
|
</header>
|
|
|
|
<section id="entry-markdown-content" class="entry-markdown-content">
|
2015-07-04 21:25:55 +03:00
|
|
|
{{gh-ed-editor classNames="markdown-editor js-markdown-editor" tabindex="1" spellcheck="true" value=model.scratch setEditor="setEditor" updateScrollInfo="updateEditorScrollInfo" openModal="openModal" onFocusIn="autoSaveNew" height=height focus=shouldFocusEditor}}
|
2015-06-13 17:34:09 +03:00
|
|
|
</section>
|
2014-08-05 13:51:39 +04:00
|
|
|
</section>
|
2014-03-02 18:30:35 +04:00
|
|
|
|
2015-06-13 17:34:09 +03:00
|
|
|
<section class="entry-preview js-entry-preview">
|
|
|
|
<header class="floatingheader">
|
|
|
|
<span>Preview</span>
|
|
|
|
<span class="entry-word-count js-entry-word-count">{{gh-count-words model.scratch}}</span>
|
|
|
|
</header>
|
|
|
|
<section class="entry-preview-content js-entry-preview-content">
|
|
|
|
{{gh-ed-preview classNames="rendered-markdown js-rendered-markdown"
|
|
|
|
markdown=model.scratch scrollPosition=ghEditor.scrollPosition updateHeight="updateHeight"
|
|
|
|
uploadStarted="disableEditor" uploadFinished="enableEditor" uploadSuccess="handleImgUpload"}}
|
|
|
|
</section>
|
2014-08-05 13:51:39 +04:00
|
|
|
</section>
|
2014-03-02 18:30:35 +04:00
|
|
|
</section>
|
2015-06-13 17:34:09 +03:00
|
|
|
{{/gh-editor}}
|