diff --git a/wp-includes/js/media-views.js b/wp-includes/js/media-views.js index 9dbdd5ecb2..c0d3003beb 100644 --- a/wp-includes/js/media-views.js +++ b/wp-includes/js/media-views.js @@ -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() { diff --git a/wp-includes/version.php b/wp-includes/version.php index 68cd53ee65..90d8d8da25 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42409'; +$wp_version = '5.0-alpha-42410'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.