Changeset 30842
- Timestamp:
- 12/13/2014 10:07:58 PM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r30754 r30842 648 648 ?> 649 649 650 <?php if ( post_type_supports( $post_type, 'title' ) && '' === $post->post_title ) : ?>650 <?php if ( ! wp_is_mobile() && post_type_supports( $post_type, 'title' ) && '' === $post->post_title ) : ?> 651 651 <script type="text/javascript"> 652 652 try{document.post.title.focus();}catch(e){} -
trunk/src/wp-admin/edit-form-comment.php
r28497 r30842 156 156 </form> 157 157 158 <?php if ( ! wp_is_mobile() ) : ?> 158 159 <script type="text/javascript"> 159 160 try{document.post.name.focus();}catch(e){} 160 161 </script> 162 <?php endif; -
trunk/src/wp-admin/edit-tag-form.php
r30649 r30842 201 201 </form> 202 202 </div> 203 204 <?php if ( ! wp_is_mobile() ) : ?> 203 205 <script type="text/javascript"> 204 206 try{document.forms.edittag.name.focus();}catch(e){} 205 207 </script> 208 <?php endif; -
trunk/src/wp-admin/edit-tags.php
r30649 r30842 584 584 </div><!-- /col-container --> 585 585 </div><!-- /wrap --> 586 587 <?php if ( ! wp_is_mobile() ) : ?> 586 588 <script type="text/javascript"> 587 589 try{document.forms.addtag['tag-name'].focus();}catch(e){} 588 590 </script> 589 591 <?php 592 endif; 593 590 594 $wp_list_table->inline_edit(); 591 595
Note: See TracChangeset
for help on using the changeset viewer.