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:
Sergey Biryukov 2021-02-18 11:28:06 +00:00
parent 9bc5ccb4a5
commit 488ebec933
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ function tb_click(){
var a = this.href || this.alt;
var g = this.rel || false;
tb_show(t,a,g);
this.trigger( 'blur' );
this.blur();
return false;
}

View File

@ -13,7 +13,7 @@
*
* @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.