Changeset 49758
- Timestamp:
- 12/06/2020 02:19:56 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r49109 r49758 1514 1514 1515 1515 // Travis CI tasks. 1516 grunt.registerTask('travis:js', 'Runs Java script Travis CI tasks.', [ 'jshint:corejs', 'qunit:compiled' ]);1516 grunt.registerTask('travis:js', 'Runs JavaScript Travis CI tasks.', [ 'jshint:corejs', 'qunit:compiled' ]); 1517 1517 grunt.registerTask('travis:phpunit', 'Runs PHPUnit Travis CI tasks.', [ 'build', 'phpunit' ]); 1518 1518 grunt.registerTask('travis:phpcs', 'Runs PHP Coding Standards Travis CI tasks.', [ 'format:php:error', 'lint:php:travisErrors:error', 'lint:php:travisWarnings:error' ]); -
trunk/src/wp-content/themes/twentythirteen/functions.php
r49208 r49758 759 759 760 760 /** 761 * Enqueue Java script postMessage handlers for the Customizer.761 * Enqueue JavaScript postMessage handlers for the Customizer. 762 762 * 763 763 * Binds JavaScript handlers to make the Customizer preview -
trunk/src/wp-content/themes/twentytwelve/functions.php
r48825 r49758 675 675 676 676 /** 677 * Enqueue Java script postMessage handlers for the Customizer.677 * Enqueue JavaScript postMessage handlers for the Customizer. 678 678 * 679 679 * Binds JS handlers to make the Customizer preview reload changes asynchronously. -
trunk/src/wp-includes/class.wp-scripts.php
r48897 r49758 416 416 * @param string $handle Name of the script to add the inline script to. 417 417 * Must be lowercase. 418 * @param string $data String containing the javascript to be added.418 * @param string $data String containing the JavaScript to be added. 419 419 * @param string $position Optional. Whether to add the inline script 420 420 * before the handle or after. Default 'after'. -
trunk/src/wp-includes/functions.wp-scripts.php
r48590 r49758 123 123 * 124 124 * @param string $handle Name of the script to add the inline script to. 125 * @param string $data String containing the javascript to be added.125 * @param string $data String containing the JavaScript to be added. 126 126 * @param string $position Optional. Whether to add the inline script before the handle 127 127 * or after. Default 'after'. -
trunk/src/wp-login.php
r49539 r49758 324 324 325 325 /** 326 * Outputs the Java script to handle the form shaking on the login page.326 * Outputs the JavaScript to handle the form shaking on the login page. 327 327 * 328 328 * @since 3.0.0 -
trunk/tests/phpunit/tests/formatting/WPTrimWords.php
r48937 r49758 42 42 $trimmed = 'This text contains. It should go.'; 43 43 44 $text = 'This text contains<script>alert(" Java script");</script>. It should go.';44 $text = 'This text contains<script>alert(" JavaScript");</script>. It should go.'; 45 45 $this->assertSame( $trimmed, wp_trim_words( $text ) ); 46 46
Note: See TracChangeset
for help on using the changeset viewer.