mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 07:40:07 +00:00
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:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user