Docs: Improve JSDoc for `js/media/controllers/edit-image.js`.

Amends r42392  - includes the built media files.


git-svn-id: https://develop.svn.wordpress.org/trunk@42410 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Anton Timmermans 2017-12-18 11:19:02 +00:00
parent fa5e8c13e7
commit 05d60c580e
1 changed files with 18 additions and 1 deletions

View File

@ -2045,21 +2045,37 @@ EditImage = wp.media.controller.State.extend(/** @lends wp.media.controller.Edit
},
/**
* Activates a frame for editing a featured image.
*
* @since 3.9.0
*
* @returns {void}
*/
activate: function() {
this.frame.on( 'toolbar:render:edit-image', _.bind( this.toolbar, this ) );
},
/**
* Deactivates a frame for editing a featured image.
*
* @since 3.9.0
*
* @returns {void}
*/
deactivate: function() {
this.frame.off( 'toolbar:render:edit-image' );
},
/**
* Adds a toolbar with a back button.
*
* When the back button is pressed it checks whether there is a previous state.
* In case there is a previous state it sets that previous state otherwise it
* closes the frame.
*
* @since 3.9.0
*
* @returns {void}
*/
toolbar: function() {
var frame = this.frame,
@ -3725,7 +3741,8 @@ Post = Select.extend(/** @lends wp.media.view.MediaFrame.Post.prototype */{
requires: { selection: true },
/**
* @callback
* @ignore
*
* @fires wp.media.controller.State#insert
*/
click: function() {