Changeset 27415
- Timestamp:
- 03/05/2014 06:36:30 PM (10 years ago)
- Location:
- trunk/src/wp-includes/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/media-editor.js
r27411 r27415 274 274 } 275 275 }; 276 276 277 /** 278 * @mixin 279 */ 277 280 wp.media.mixin = { 278 281 /** … … 553 556 }); 554 557 558 /** 559 * @namespace 560 */ 555 561 wp.media.audio = _.extend({ 556 562 defaults : { … … 594 600 }, wp.media.mixin); 595 601 602 /** 603 * @namespace 604 */ 596 605 wp.media.video = _.extend({ 597 606 defaults : { -
trunk/src/wp-includes/js/media-views.js
r27414 r27415 2503 2503 }); 2504 2504 2505 /** 2506 * wp.media.view.MediaFrame.ImageDetails 2507 * 2508 * @constructor 2509 * @augments wp.media.view.MediaFrame.Select 2510 * @augments wp.media.view.MediaFrame 2511 * @augments wp.media.view.Frame 2512 * @augments wp.media.View 2513 * @augments wp.Backbone.View 2514 * @augments Backbone.View 2515 * @mixes wp.media.controller.StateMachine 2516 */ 2505 2517 media.view.MediaFrame.ImageDetails = media.view.MediaFrame.Select.extend({ 2506 2518 defaults: { … … 2650 2662 }); 2651 2663 2664 /** 2665 * wp.media.view.MediaFrame.AudioDetails 2666 * 2667 * @constructor 2668 * @augments wp.media.view.MediaFrame.Select 2669 * @augments wp.media.view.MediaFrame 2670 * @augments wp.media.view.Frame 2671 * @augments wp.media.View 2672 * @augments wp.Backbone.View 2673 * @augments Backbone.View 2674 * @mixes wp.media.controller.StateMachine 2675 */ 2652 2676 media.view.MediaFrame.AudioDetails = media.view.MediaFrame.Select.extend({ 2653 2677 defaults: { … … 2793 2817 }); 2794 2818 2819 /** 2820 * wp.media.view.MediaFrame.VideoDetails 2821 * 2822 * @constructor 2823 * @augments wp.media.view.MediaFrame.Select 2824 * @augments wp.media.view.MediaFrame 2825 * @augments wp.media.view.Frame 2826 * @augments wp.media.View 2827 * @augments wp.Backbone.View 2828 * @augments Backbone.View 2829 * @mixes wp.media.controller.StateMachine 2830 */ 2795 2831 media.view.MediaFrame.VideoDetails = media.view.MediaFrame.Select.extend({ 2796 2832 defaults: { … … 6093 6129 }); 6094 6130 6131 /** 6132 * wp.media.view.ImageDetails 6133 * 6134 * @contructor 6135 * @augments wp.media.view.Settings.AttachmentDisplay 6136 * @augments wp.media.view.Settings 6137 * @augments wp.media.View 6138 * @augments wp.Backbone.View 6139 * @augments Backbone.View 6140 */ 6095 6141 media.view.ImageDetails = media.view.Settings.AttachmentDisplay.extend({ 6096 6142 className: 'image-details', … … 6139 6185 }); 6140 6186 6187 /** 6188 * wp.media.view.AudioDetails 6189 * 6190 * @contructor 6191 * @augments wp.media.view.Settings.AttachmentDisplay 6192 * @augments wp.media.view.Settings 6193 * @augments wp.media.View 6194 * @augments wp.Backbone.View 6195 * @augments Backbone.View 6196 */ 6141 6197 media.view.AudioDetails = media.view.Settings.AttachmentDisplay.extend({ 6142 6198 className: 'audio-details', … … 6194 6250 }); 6195 6251 6252 /** 6253 * wp.media.view.VideoDetails 6254 * 6255 * @contructor 6256 * @augments wp.media.view.Settings.AttachmentDisplay 6257 * @augments wp.media.view.Settings 6258 * @augments wp.media.View 6259 * @augments wp.Backbone.View 6260 * @augments Backbone.View 6261 */ 6196 6262 media.view.VideoDetails = media.view.Settings.AttachmentDisplay.extend({ 6197 6263 className: 'video-details',
Note: See TracChangeset
for help on using the changeset viewer.