diff --git src/wp-includes/js/media-views.js src/wp-includes/js/media-views.js
index 3d8d9d7..cacee01 100644
|
|
|
|
| 80 | 80 | /** |
| 81 | 81 | * wp.media.controller.Region |
| 82 | 82 | * |
| 83 | | * @constructor |
| | 83 | * @class |
| 84 | 84 | * @augments Backbone.Model |
| 85 | 85 | * |
| 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. |
| 87 | 91 | */ |
| 88 | 92 | media.controller.Region = function( options ) { |
| 89 | 93 | _.extend( this, _.pick( options || {}, 'id', 'view', 'selector' ) ); |