Clarify that 'html' refers to the Text editor tab, see #20993

git-svn-id: https://develop.svn.wordpress.org/trunk@21218 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2012-07-05 20:28:01 +00:00
parent 13c2591ec0
commit 757652fe01
3 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@ var switchEditors = {
this.go(id, mode); this.go(id, mode);
}, },
go: function(id, mode) { // mode can be 'html', 'tmce', or 'toggle' go: function(id, mode) { // mode can be 'html', 'tmce', or 'toggle'; 'html' is used for the "Text" editor tab.
id = id || 'content'; id = id || 'content';
mode = mode || 'toggle'; mode = mode || 'toggle';

View File

@ -76,6 +76,7 @@ final class _WP_Editors {
if ( self::$this_quicktags && self::$this_tinymce ) { if ( self::$this_quicktags && self::$this_tinymce ) {
$switch_class = 'html-active'; $switch_class = 'html-active';
// 'html' and 'switch-html' are used for the "Text" editor tab.
if ( 'html' == wp_default_editor() ) { if ( 'html' == wp_default_editor() ) {
add_filter('the_editor_content', 'wp_htmledit_pre'); add_filter('the_editor_content', 'wp_htmledit_pre');
} else { } else {

View File

@ -1767,7 +1767,7 @@ function user_can_richedit() {
* Find out which editor should be displayed by default. * Find out which editor should be displayed by default.
* *
* Works out which of the two editors to display as the current editor for a * Works out which of the two editors to display as the current editor for a
* user. * user. The 'html' setting is for the "Text" editor tab.
* *
* @since 2.5.0 * @since 2.5.0
* *