diff options
author | friendica <info@friendica.com> | 2015-02-26 17:18:09 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-26 17:18:09 -0800 |
commit | 5d57df2694b6515b43c4a641bf47b8c5f112d4f7 (patch) | |
tree | 69c146fde030d5f3ba174ebdcce12a50b38822e9 /view/tpl/jot.tpl | |
parent | dce0bb0ef806d88a855c362f359b7b1a350deff2 (diff) | |
download | volse-hubzilla-5d57df2694b6515b43c4a641bf47b8c5f112d4f7.tar.gz volse-hubzilla-5d57df2694b6515b43c4a641bf47b8c5f112d4f7.tar.bz2 volse-hubzilla-5d57df2694b6515b43c4a641bf47b8c5f112d4f7.zip |
per Randal overheard on a foreign network - tab in post/comment edit window goes to submit instead of the next button.
Diffstat (limited to 'view/tpl/jot.tpl')
-rwxr-xr-x | view/tpl/jot.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index f32dba095..4fe48d4e5 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -21,7 +21,7 @@ </div> {{/if}} <div id="jot-title-wrap" class="jothidden" style="display:none"> - <input name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" value="{{$title}}"> + <input name="title" id="jot-title" type="text" placeholder="{{$placeholdertitle}}" tabindex=1 value="{{$title}}"> </div> {{if $catsenabled}} <div id="jot-category-wrap" class="jothidden" style="display:none"> @@ -34,7 +34,7 @@ </div> {{/if}} <div id="jot-text-wrap"> - <textarea class="profile-jot-text" id="profile-jot-text" name="body" placeholder="{{$share}}">{{$content}}</textarea> + <textarea class="profile-jot-text" id="profile-jot-text" name="body" tabindex=2 placeholder="{{$share}}">{{$content}}</textarea> </div> <div id="profile-jot-submit-wrapper" class="jothidden"> <div id="profile-jot-submit-left" class="btn-toolbar pull-left"> @@ -99,7 +99,7 @@ <i class="icon-eye-open jot-icons" ></i> </button> {{/if}} - <button id="dbtn-submit" class="btn btn-primary btn-sm" type="submit" name="button-submit" >{{$share}}</button> + <button id="dbtn-submit" class="btn btn-primary btn-sm" type="submit" tabindex=3 name="button-submit" >{{$share}}</button> </div> <div id="profile-jot-perms-end"></div> <div id="profile-jot-plugin-wrapper"> |