mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-06 08:28:07 +01:00
20 lines
407 B
JavaScript
20 lines
407 B
JavaScript
|
/*globals wp */
|
||
|
|
||
|
/**
|
||
|
* wp.media.view.Settings.Playlist
|
||
|
*
|
||
|
* @class
|
||
|
* @augments wp.media.view.Settings
|
||
|
* @augments wp.media.View
|
||
|
* @augments wp.Backbone.View
|
||
|
* @augments Backbone.View
|
||
|
*/
|
||
|
var Settings = require( '../settings.js' ),
|
||
|
Playlist;
|
||
|
|
||
|
Playlist = Settings.extend({
|
||
|
className: 'collection-settings playlist-settings',
|
||
|
template: wp.template('playlist-settings')
|
||
|
});
|
||
|
|
||
|
module.exports = Playlist;
|