Make WordPress Core

Changeset 8776


Ignore:
Timestamp:
08/29/2008 08:44:54 PM (16 years ago)
Author:
azaozz
Message:

Add tabindex to the comment reply form. Props nbachiyski, see #7435

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r8767 r8776  
    11001100
    11011101    <?php echo apply_filters( 'wp_comment_reply_content', '
    1102     <div id="replycontainer"><textarea rows="5" cols="40" name="replycontent" tabindex="10" id="replycontent"></textarea></div>
     1102    <div id="replycontainer"><textarea rows="5" cols="40" name="replycontent" tabindex="1000" id="replycontent"></textarea></div>
    11031103    '); ?>
    11041104
    1105     <p id="replysubmit"><input type="button" onclick="commentReply.close();" class="button" value="<?php _e('Cancel'); ?>" />
    1106     <input type="button" onclick="commentReply.send();" class="button" value="<?php _e('Submit Reply'); ?>" /></p>
     1105    <p id="replysubmit"><input type="button" onclick="commentReply.close();" class="button" tabindex="1002" value="<?php _e('Cancel'); ?>" />
     1106    <input type="button" onclick="commentReply.send();" class="button" tabindex="1001" value="<?php _e('Submit Reply'); ?>" /></p>
    11071107    </form>
    11081108    </div>
Note: See TracChangeset for help on using the changeset viewer.