mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-19 23:01:26 +01:00
19 lines
327 B
JavaScript
19 lines
327 B
JavaScript
|
/**
|
||
|
* wp.media.view.Attachment.Library
|
||
|
*
|
||
|
* @class
|
||
|
* @augments wp.media.view.Attachment
|
||
|
* @augments wp.media.View
|
||
|
* @augments wp.Backbone.View
|
||
|
* @augments Backbone.View
|
||
|
*/
|
||
|
var Attachment = require( '../attachment.js' ),
|
||
|
Library;
|
||
|
|
||
|
Library = Attachment.extend({
|
||
|
buttons: {
|
||
|
check: true
|
||
|
}
|
||
|
});
|
||
|
|
||
|
module.exports = Library;
|