0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #200 from cobbspur/tabindex

closes #153 tabindex bug
This commit is contained in:
Hannah Wolfe 2013-06-23 04:48:46 -07:00
commit 510950595f
2 changed files with 2 additions and 1 deletions

View file

@ -232,6 +232,7 @@
this.editor = CodeMirror.fromTextArea(document.getElementById('entry-markdown'), { this.editor = CodeMirror.fromTextArea(document.getElementById('entry-markdown'), {
mode: 'markdown', mode: 'markdown',
tabMode: 'indent', tabMode: 'indent',
tabindex: "2",
lineWrapping: true lineWrapping: true
}); });

View file

@ -4,7 +4,7 @@
<section class="box entry-title"> <section class="box entry-title">
<input type="text" id="entry-title" <input type="text" id="entry-title"
placeholder="{{e "editor.entry_title.placeholder" "The Post Title Gets Inserted Up Here"}}" placeholder="{{e "editor.entry_title.placeholder" "The Post Title Gets Inserted Up Here"}}"
value="{{title}}"> value="{{title}}" tabindex="1">
</section> </section>
</header> </header>