Make WordPress Core

Ticket #41602: 41602.diff

File 41602.diff, 4.1 KB (added by adamsilverstein, 7 years ago)

slight spacing cleanup, add some periods

  • src/wp-includes/js/media/audiovideo.manifest.js

    diff --git src/wp-includes/js/media/audiovideo.manifest.js src/wp-includes/js/media/audiovideo.manifest.js
    index 7217e02170..1b4bef7831 100644
    var media = wp.media, 
    33        l10n = window._wpMediaViewsL10n || {};
    44
    55/**
     6 *
     7 * @summary Defines the wp.media.mixin object.
     8 *
    69 * @mixin
     10 *
     11 * @since 4.2.0
    712 */
    813wp.media.mixin = {
    914        mejsSettings: baseSettings,
    1015
     16        /**
     17         * @summary Pauses and removes all players.
     18         *
     19         * @since 4.2.0
     20         *
     21         * @return {void}
     22         */
    1123        removeAllPlayers: function() {
    1224                var p;
    1325
    wp.media.mixin = { 
    2032        },
    2133
    2234        /**
     35         * @summary Removes the player.
     36         *
    2337         * Override the MediaElement method for removing a player.
    24          *      MediaElement tries to pull the audio/video tag out of
    25          *      its container and re-add it to the DOM.
     38         * MediaElement tries to pull the audio/video tag out of
     39         * its container and re-add it to the DOM.
     40         *
     41         * @since 4.2.0
     42         *
     43         * @return {void}
    2644         */
    2745        removePlayer: function(t) {
    2846                var featureIndex, feature;
    wp.media.mixin = { 
    5775        },
    5876
    5977        /**
     78         *
     79         * @summary Removes and resets all players.
     80         *
    6081         * Allows any class that has set 'player' to a MediaElementPlayer
    61          *  instance to remove the player when listening to events.
     82         * instance to remove the player when listening to events.
     83         *
     84         * Examples: modal closes, shortcode properties are removed, etc.
    6285         *
    63          *  Examples: modal closes, shortcode properties are removed, etc.
     86         * @since 4.2.0
    6487         */
    6588        unsetPlayers : function() {
    6689                if ( this.players && this.players.length ) {
    wp.media.mixin = { 
    7497};
    7598
    7699/**
    77  * Autowire "collection"-type shortcodes
     100 * @summary Shortcode modeling for playlists.
     101 *
     102 * @since 4.2.0
    78103 */
    79104wp.media.playlist = new wp.media.collection({
    80105        tag: 'playlist',
    wp.media.playlist = new wp.media.collection({ 
    91116});
    92117
    93118/**
    94  * Shortcode modeling for audio
    95  *  `edit()` prepares the shortcode for the media modal
    96  *  `shortcode()` builds the new shortcode after update
     119 * @summary Shortcode modeling for audio.
     120 *
     121 * `edit()` prepares the shortcode for the media modal.
     122 * `shortcode()` builds the new shortcode after an update.
    97123 *
    98124 * @namespace
     125 *
     126 * @since 4.2.0
    99127 */
    100128wp.media.audio = {
    101129        coerce : wp.media.coerce,
    wp.media.audio = { 
    109137                width : 400
    110138        },
    111139
     140        /**
     141         * @summary Instantiates a new media object with the next matching shortcode.
     142         *
     143         * @since 4.2.0
     144         *
     145         * @param {string} data The text to apply the shortcode on.
     146         * @returns {wp.media} The media object.
     147         */
    112148        edit : function( data ) {
    113149                var frame, shortcode = wp.shortcode.next( 'audio', data ).shortcode;
    114150
    wp.media.audio = { 
    121157                return frame;
    122158        },
    123159
     160        /**
     161         * @summary Generates an audio shortcode.
     162         *
     163         * @since 4.2.0
     164         *
     165         * @param {Array} model Array with attributes for the shortcode.
     166         * @returns {wp.shortcode} The audio shortcode object.
     167         */
    124168        shortcode : function( model ) {
    125169                var content;
    126170
    wp.media.audio = { 
    144188};
    145189
    146190/**
    147  * Shortcode modeling for video
    148  *  `edit()` prepares the shortcode for the media modal
    149  *  `shortcode()` builds the new shortcode after update
     191 * @summary Shortcode modeling for video.
     192 *
     193 *  `edit()` prepares the shortcode for the media modal.
     194 *  `shortcode()` builds the new shortcode after update.
     195 *
     196 * @since 4.2.0
    150197 *
    151198 * @namespace
    152199 */
    wp.media.video = { 
    165212                height : 360
    166213        },
    167214
     215        /**
     216         * @summary Instantiates a new media object with the next matching shortcode.
     217         *
     218         * @since 4.2.0
     219         *
     220         * @param {string} data The text to apply the shortcode on.
     221         * @returns {wp.media} The media object.
     222         */
    168223        edit : function( data ) {
    169224                var frame,
    170225                        shortcode = wp.shortcode.next( 'video', data ).shortcode,
    wp.media.video = { 
    182237                return frame;
    183238        },
    184239
     240        /**
     241         * @summary Generates an video shortcode.
     242         *
     243         * @since 4.2.0
     244         *
     245         * @param {Array} model Array with attributes for the shortcode.
     246         * @returns {wp.shortcode} The video shortcode object.
     247         */
    185248        shortcode : function( model ) {
    186249                var content;
    187250