mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Docs: Update some recently added inline comments per the documentation standards.
Follow-up to [50256], [50258], [50259]. See #51800. git-svn-id: https://develop.svn.wordpress.org/trunk@50264 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0b8b1f4006
commit
a4cb795001
@ -132,7 +132,7 @@ Modal = wp.media.View.extend(/** @lends wp.media.view.Modal.prototype */{
|
||||
return this;
|
||||
}
|
||||
|
||||
// Pause current audio/video even after closing the modal
|
||||
// Pause current audio/video even after closing the modal.
|
||||
$( '.mejs-pause button' ).click();
|
||||
|
||||
// Enable page scrolling.
|
||||
|
||||
@ -430,10 +430,10 @@ function media_handle_upload( $file_id, $post_id, $post_data = array(), $overrid
|
||||
* @since 2.6.0
|
||||
* @since 5.3.0 The `$post_id` parameter was made optional.
|
||||
*
|
||||
* @param string[] $file_array Array that represents a `$_FILES` upload array.
|
||||
* @param int $post_id Optional. The post ID the media is associated with.
|
||||
* @param string $desc Optional. Description of the side-loaded file. Default null.
|
||||
* @param array $post_data Optional. Post data to override. Default empty array.
|
||||
* @param string[] $file_array Array that represents a `$_FILES` upload array.
|
||||
* @param int $post_id Optional. The post ID the media is associated with.
|
||||
* @param string $desc Optional. Description of the side-loaded file. Default null.
|
||||
* @param array $post_data Optional. Post data to override. Default empty array.
|
||||
* @return int|WP_Error The ID of the attachment or a WP_Error on failure.
|
||||
*/
|
||||
function media_handle_sideload( $file_array, $post_id = 0, $desc = null, $post_data = array() ) {
|
||||
|
||||
@ -268,12 +268,14 @@ function wp_default_packages_scripts( $scripts ) {
|
||||
$scripts->set_translations( $handle );
|
||||
}
|
||||
|
||||
// Manually set the text direction localization after wp-i18n is
|
||||
// printed. This ensures that wp.i18n.isRTL() returns true in RTL
|
||||
// languages. We cannot use $scripts->set_translations( 'wp-i18n' ) to
|
||||
// do this because WordPress prints a script's translations *before*
|
||||
// printing the script, which means, in the case of wp-i18n, that
|
||||
// wp.i18n.setLocaleData() is called before wp.i18n is defined.
|
||||
/*
|
||||
* Manually set the text direction localization after wp-i18n is printed.
|
||||
* This ensures that wp.i18n.isRTL() returns true in RTL languages.
|
||||
* We cannot use $scripts->set_translations( 'wp-i18n' ) to do this
|
||||
* because WordPress prints a script's translations *before* the script,
|
||||
* which means, in the case of wp-i18n, that wp.i18n.setLocaleData()
|
||||
* is called before wp.i18n is defined.
|
||||
*/
|
||||
if ( 'wp-i18n' === $handle ) {
|
||||
$ltr = _x( 'ltr', 'text direction', 'default' );
|
||||
$script = sprintf( "wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ '%s' ] } );", $ltr );
|
||||
|
||||
Loading…
Reference in New Issue
Block a user