Make WordPress Core

Ticket #30193: 30193.3.diff

File 30193.3.diff, 795 bytes (added by ericlewis, 11 years ago)
  • src/wp-includes/js/media-views.js

    diff --git src/wp-includes/js/media-views.js src/wp-includes/js/media-views.js
    index 3d8d9d7..cacee01 100644
     
    8080        /**
    8181         * wp.media.controller.Region
    8282         *
    83          * @constructor
     83         * @class
    8484         * @augments Backbone.Model
    8585         *
    86          * @param {Object} [options={}]
     86         *
     87         * @param {object}           options          The options hash passed to the region.
     88         * @param {string}           options.id       Unique identifier.
     89         * @param {media.view.Frame} options.view     The frame view.
     90         * @param {string}           options.selector jQuery selector for the region inside the frame.
    8791         */
    8892        media.controller.Region = function( options ) {
    8993                _.extend( this, _.pick( options || {}, 'id', 'view', 'selector' ) );