Simplify selectors in [30374].
props wonderboymusic, adamsilverstein. see #29326. Built from https://develop.svn.wordpress.org/trunk@30461 git-svn-id: http://core.svn.wordpress.org/trunk@30452 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4b65a37244
commit
12b2ca45ad
|
@ -3018,7 +3018,7 @@
|
||||||
this.content.set( view );
|
this.content.set( view );
|
||||||
|
|
||||||
// Trigger the controller to set focus
|
// Trigger the controller to set focus
|
||||||
view.controller.trigger( 'edit:selection', this );
|
this.trigger( 'edit:selection', this );
|
||||||
},
|
},
|
||||||
|
|
||||||
editImageContent: function() {
|
editImageContent: function() {
|
||||||
|
@ -6266,7 +6266,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
editSelection: function( modal ) {
|
editSelection: function( modal ) {
|
||||||
modal.$el.find( '.media-button-backToLibrary' ).focus();
|
modal.$( '.media-button-backToLibrary' ).focus();
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-beta1-30460';
|
$wp_version = '4.1-beta1-30461';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue