External Libraries: Revert the change to the `tb_click()` function in the Thickbox library.
The `blur()` method there is not the jQuery method, but is an HTML DOM method instead. This makes the Close button on the "View details" modal on Plugins screen functional again. Follow-up to [50367]. Props afragen. See #51812. Built from https://develop.svn.wordpress.org/trunk@50383 git-svn-id: http://core.svn.wordpress.org/trunk@49994 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9bc5ccb4a5
commit
488ebec933
|
@ -35,7 +35,7 @@ function tb_click(){
|
||||||
var a = this.href || this.alt;
|
var a = this.href || this.alt;
|
||||||
var g = this.rel || false;
|
var g = this.rel || false;
|
||||||
tb_show(t,a,g);
|
tb_show(t,a,g);
|
||||||
this.trigger( 'blur' );
|
this.blur();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-beta3-50382';
|
$wp_version = '5.7-beta3-50383';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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