Correctly capitalize JavaScript throughout core docs.

Fixes #30569.

Built from https://develop.svn.wordpress.org/trunk@30695


git-svn-id: http://core.svn.wordpress.org/trunk@30685 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-12-02 00:31:22 +00:00
parent d16c8cf1fc
commit ad297dab6d
15 changed files with 22 additions and 22 deletions

View File

@ -527,7 +527,7 @@ li.menu-item.ui-sortable-helper .menu-item-transport dl {
margin-top: 13px;
}
/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
/* WARNING: The factor of 30px is hardcoded into the nav-menus JavaScript. */
.menu-item-depth-0 { margin-right: 0px; }
.menu-item-depth-1 { margin-right: 30px; }
.menu-item-depth-2 { margin-right: 60px; }

View File

@ -527,7 +527,7 @@ li.menu-item.ui-sortable-helper .menu-item-transport dl {
margin-top: 13px;
}
/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
/* WARNING: The factor of 30px is hardcoded into the nav-menus JavaScript. */
.menu-item-depth-0 { margin-left: 0px; }
.menu-item-depth-1 { margin-left: 30px; }
.menu-item-depth-2 { margin-left: 60px; }

View File

@ -362,7 +362,7 @@ class Custom_Image_Header {
}
/**
* Execute Javascript depending on step.
* Execute JavaScript depending on step.
*
* @since 2.1.0
*/
@ -375,7 +375,7 @@ class Custom_Image_Header {
}
/**
* Display Javascript based on Step 1 and 3.
* Display JavaScript based on Step 1 and 3.
*
* @since 2.6.0
*/
@ -439,7 +439,7 @@ class Custom_Image_Header {
}
/**
* Display Javascript based on Step 2.
* Display JavaScript based on Step 2.
*
* @since 2.6.0
*/

View File

@ -232,7 +232,7 @@ do_action( 'customize_controls_print_scripts' );
'customize-login' => 1
), wp_login_url() );
// Prepare Customizer settings to pass to Javascript.
// Prepare Customizer settings to pass to JavaScript.
$settings = array(
'theme' => array(
'stylesheet' => $wp_customize->get_stylesheet(),
@ -265,7 +265,7 @@ do_action( 'customize_controls_print_scripts' );
'documentTitleTmpl' => $document_title_tmpl,
);
// Prepare Customize Setting objects to pass to Javascript.
// Prepare Customize Setting objects to pass to JavaScript.
foreach ( $wp_customize->settings() as $id => $setting ) {
$settings['settings'][ $id ] = array(
'value' => $setting->js_value(),

View File

@ -208,7 +208,7 @@ function codepress_get_lang( $filename ) {
}
/**
* Adds Javascript required to make CodePress work on the theme/plugin editors.
* Adds JavaScript required to make CodePress work on the theme/plugin editors.
*
* @since 2.8.0
* @deprecated 3.0.0

View File

@ -282,7 +282,7 @@ function wp_prepare_revisions_for_js( $post, $selected_revision_id, $from = null
}
/**
* Print Javascript templates required for the revisions experience.
* Print JavaScript templates required for the revisions experience.
*
* @since 4.1.0
*

View File

@ -1608,7 +1608,7 @@ document.body.className = c;
function iframe_footer() {
/*
* We're going to hide any footer output on iFrame pages,
* but run the hooks anyway since they output Javascript
* but run the hooks anyway since they output JavaScript
* or other needed content.
*/
?>
@ -1949,7 +1949,7 @@ final class WP_Internal_Pointers {
}
/**
* Print the pointer javascript data.
* Print the pointer JavaScript data.
*
* @since 3.3.0
*

View File

@ -419,7 +419,7 @@ final class WP_Customize_Manager {
}
/**
* Print javascript settings.
* Print JavaScript settings.
*
* @since 3.4.0
*/
@ -492,7 +492,7 @@ final class WP_Customize_Manager {
}
/**
* Print javascript settings for preview frame.
* Print JavaScript settings for preview frame.
*
* @since 3.4.0
*/

View File

@ -1041,7 +1041,7 @@ final class WP_Customize_Widgets {
*/
public function export_preview_data() {
// Prepare Customizer settings to pass to Javascript.
// Prepare Customizer settings to pass to JavaScript.
$settings = array(
'renderedSidebars' => array_fill_keys( array_unique( $this->rendered_sidebars ), true ),
'renderedWidgets' => array_fill_keys( array_keys( $this->rendered_widgets ), true ),

View File

@ -759,7 +759,7 @@ final class _WP_Editors {
* Can be used directly (_WP_Editors::wp_mce_translation()) by passing the same locale as set in the TinyMCE init object.
*
* @param string $mce_locale The locale used for the editor.
* @param bool $json_only optional Whether to include the Javascript calls to tinymce.addI18n() and tinymce.ScriptLoader.markDone().
* @param bool $json_only optional Whether to include the JavaScript calls to tinymce.addI18n() and tinymce.ScriptLoader.markDone().
* @return string Translation object, JSON encoded.
*/
public static function wp_mce_translation( $mce_locale = '', $json_only = false ) {

View File

@ -1610,7 +1610,7 @@ function comment_id_fields( $id = 0 ) {
/**
* Display text based on comment reply status.
*
* Only affects users with Javascript disabled.
* Only affects users with JavaScript disabled.
*
* @since 2.7.0
*

View File

@ -2501,7 +2501,7 @@ function funky_javascript_callback($matches) {
}
/**
* Fixes javascript bugs in browsers.
* Fixes JavaScript bugs in browsers.
*
* Converts unicode characters to HTML numbered entities.
*
@ -2515,7 +2515,7 @@ function funky_javascript_callback($matches) {
*/
function funky_javascript_fix($text) {
_deprecated_function( __FUNCTION__, '3.0' );
// Fixes for browsers' javascript bugs
// Fixes for browsers' JavaScript bugs.
global $is_macIE, $is_winIE;
if ( $is_winIE || $is_macIE )

View File

@ -1,4 +1,4 @@
// Utility functions for parsing and handling shortcodes in Javascript.
// Utility functions for parsing and handling shortcodes in JavaScript.
// Ensure the global `wp` object exists.
window.wp = window.wp || {};

View File

@ -290,14 +290,14 @@ function get_the_content( $more_link_text = null, $strip_teaser = false ) {
}
}
if ( $preview ) // preview fix for javascript bug with foreign languages
if ( $preview ) // Preview fix for JavaScript bug with foreign languages.
$output = preg_replace_callback( '/\%u([0-9A-F]{4})/', '_convert_urlencoded_to_entities', $output );
return $output;
}
/**
* Preview fix for javascript bug with foreign languages
* Preview fix for JavaScript bug with foreign languages.
*
* @since 3.1.0
* @access private

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-beta2-30694';
$wp_version = '4.1-beta2-30695';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.