Changeset 36575
- Timestamp:
- 02/18/2016 05:49:21 PM (9 years ago)
- Location:
- trunk/src/wp-includes/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/media-views.js
r36166 r36575 3755 3755 }); 3756 3756 3757 this. listenTo( this.controller, 'toggle:upload:attachment', _.bind( this.toggleUploader, this ));3757 this.controller.on( 'toggle:upload:attachment', this.toggleUploader, this ); 3758 3758 this.controller.on( 'edit:selection', this.editSelection ); 3759 3759 this.createToolbar(); -
trunk/src/wp-includes/js/media/views/attachments/browser.js
r33337 r36575 39 39 }); 40 40 41 this. listenTo( this.controller, 'toggle:upload:attachment', _.bind( this.toggleUploader, this ));41 this.controller.on( 'toggle:upload:attachment', this.toggleUploader, this ); 42 42 this.controller.on( 'edit:selection', this.editSelection ); 43 43 this.createToolbar();
Note: See TracChangeset
for help on using the changeset viewer.