From 01faa39cfdf0049be4589d4a014b6f07a8efd0e1 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Thu, 26 Mar 2015 22:34:40 +0000 Subject: [PATCH] Fix focusing in the plugin and theme editors. Update the help. Props afercia, Cheffheid. Fixes #31415. git-svn-id: https://develop.svn.wordpress.org/trunk@31908 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/js/common.js | 11 ++--------- src/wp-admin/plugin-editor.php | 2 +- src/wp-admin/theme-editor.php | 2 +- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/src/wp-admin/js/common.js b/src/wp-admin/js/common.js index dda924791d..1daea91559 100644 --- a/src/wp-admin/js/common.js +++ b/src/wp-admin/js/common.js @@ -470,6 +470,8 @@ $(document).ready( function() { var el = e.target, selStart, selEnd, val, scroll, sel; if ( e.keyCode == 27 ) { // escape key + // when pressing Escape: Opera 12 and 27 blur form fields, IE 8 clears them + e.preventDefault(); $(el).data('tab-out', true); return; } @@ -486,10 +488,6 @@ $(document).ready( function() { selEnd = el.selectionEnd; val = el.value; - try { - this.lastKey = 9; // not a standard DOM property, lastKey is to help stop Opera tab event. See blur handler below. - } catch(err) {} - if ( document.selection ) { el.focus(); sel = document.selection.createRange(); @@ -507,11 +505,6 @@ $(document).ready( function() { e.preventDefault(); }); - $('#newcontent').bind('blur.wpevent_InsertTab', function() { - if ( this.lastKey && 9 == this.lastKey ) - this.focus(); - }); - if ( pageInput.length ) { pageInput.closest('form').submit( function() { diff --git a/src/wp-admin/plugin-editor.php b/src/wp-admin/plugin-editor.php index 1c242955ba..d357b2c24f 100644 --- a/src/wp-admin/plugin-editor.php +++ b/src/wp-admin/plugin-editor.php @@ -130,7 +130,7 @@ default: '

' . __('You can use the editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.') . '

' . '

' . __('Choose a plugin to edit from the menu in the upper right and click the Select button. Click once on any file name to load it in the editor, and make your changes. Don’t forget to save your changes (Update File) when you’re finished.') . '

' . '

' . __('The Documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.') . '

' . - '

' . __('In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key.') . '

' . + '

' . __( 'In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue.' ) . '

' . '

' . __('If you want to make changes but don’t want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.') . '

' . ( is_network_admin() ? '

' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '

' : '' ) ) ); diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php index f35c12fba3..ccf3cb3b1a 100644 --- a/src/wp-admin/theme-editor.php +++ b/src/wp-admin/theme-editor.php @@ -27,7 +27,7 @@ get_current_screen()->add_help_tab( array( '

' . __('You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.') . '

' . __('Begin by choosing a theme to edit from the dropdown menu and clicking Select. A list then appears of all the template files. Clicking once on any file name causes the file to appear in the large Editor box.') . '

' . __('For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.') . '

-

' . __('In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key.') . '

+

' . __( 'In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue.' ) . '

' . __('After typing in your edits, click Update File.') . '

' . __('Advice: think very carefully about your site crashing if you are live-editing the theme currently in use.') . '

' . sprintf( __('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'), __('http://codex.wordpress.org/Child_Themes') ) . '

' .