mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Docs, Tests: Correctly capitalize JavaScript.
Correct Javascript to JavaScript within Wordpress core ;) See #51800, #51802. git-svn-id: https://develop.svn.wordpress.org/trunk@49758 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
85bc0628b4
commit
a6e1d392f2
@ -1513,7 +1513,7 @@ module.exports = function(grunt) {
|
||||
} );
|
||||
|
||||
// Travis CI tasks.
|
||||
grunt.registerTask('travis:js', 'Runs Javascript Travis CI tasks.', [ 'jshint:corejs', 'qunit:compiled' ]);
|
||||
grunt.registerTask('travis:js', 'Runs JavaScript Travis CI tasks.', [ 'jshint:corejs', 'qunit:compiled' ]);
|
||||
grunt.registerTask('travis:phpunit', 'Runs PHPUnit Travis CI tasks.', [ 'build', 'phpunit' ]);
|
||||
grunt.registerTask('travis:phpcs', 'Runs PHP Coding Standards Travis CI tasks.', [ 'format:php:error', 'lint:php:travisErrors:error', 'lint:php:travisWarnings:error' ]);
|
||||
|
||||
|
||||
@ -758,7 +758,7 @@ function twentythirteen_customize_partial_blogdescription() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Enqueue Javascript postMessage handlers for the Customizer.
|
||||
* Enqueue JavaScript postMessage handlers for the Customizer.
|
||||
*
|
||||
* Binds JavaScript handlers to make the Customizer preview
|
||||
* reload changes asynchronously.
|
||||
|
||||
@ -674,7 +674,7 @@ function twentytwelve_customize_partial_blogdescription() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Enqueue Javascript postMessage handlers for the Customizer.
|
||||
* Enqueue JavaScript postMessage handlers for the Customizer.
|
||||
*
|
||||
* Binds JS handlers to make the Customizer preview reload changes asynchronously.
|
||||
*
|
||||
|
||||
@ -415,7 +415,7 @@ class WP_Scripts extends WP_Dependencies {
|
||||
*
|
||||
* @param string $handle Name of the script to add the inline script to.
|
||||
* Must be lowercase.
|
||||
* @param string $data String containing the javascript to be added.
|
||||
* @param string $data String containing the JavaScript to be added.
|
||||
* @param string $position Optional. Whether to add the inline script
|
||||
* before the handle or after. Default 'after'.
|
||||
* @return bool True on success, false on failure.
|
||||
|
||||
@ -122,7 +122,7 @@ function wp_print_scripts( $handles = false ) {
|
||||
* @see WP_Scripts::add_inline_script()
|
||||
*
|
||||
* @param string $handle Name of the script to add the inline script to.
|
||||
* @param string $data String containing the javascript to be added.
|
||||
* @param string $data String containing the JavaScript to be added.
|
||||
* @param string $position Optional. Whether to add the inline script before the handle
|
||||
* or after. Default 'after'.
|
||||
* @return bool True on success, false on failure.
|
||||
|
||||
@ -323,7 +323,7 @@ function login_footer( $input_id = '' ) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs the Javascript to handle the form shaking on the login page.
|
||||
* Outputs the JavaScript to handle the form shaking on the login page.
|
||||
*
|
||||
* @since 3.0.0
|
||||
*/
|
||||
|
||||
@ -41,7 +41,7 @@ class Tests_Formatting_WPTrimWords extends WP_UnitTestCase {
|
||||
function test_strips_script_and_style_content() {
|
||||
$trimmed = 'This text contains. It should go.';
|
||||
|
||||
$text = 'This text contains<script>alert(" Javascript");</script>. It should go.';
|
||||
$text = 'This text contains<script>alert(" JavaScript");</script>. It should go.';
|
||||
$this->assertSame( $trimmed, wp_trim_words( $text ) );
|
||||
|
||||
$text = 'This text contains<style>#css { width:expression(alert("css")) }</style>. It should go.';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user