Themes: Hide the favorites form when performing a search.
The search is global and ignores the user setting. Same for filters. See #34206. Built from https://develop.svn.wordpress.org/trunk@35647 git-svn-id: http://core.svn.wordpress.org/trunk@35611 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
99f4fc4404
commit
a7848ea08b
|
@ -1333,7 +1333,7 @@ themes.view.InstallerSearch = themes.view.Search.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
$( '.filter-links li > a.current' ).removeClass( 'current' );
|
$( '.filter-links li > a.current' ).removeClass( 'current' );
|
||||||
$( 'body' ).removeClass( 'show-filters filters-applied' );
|
$( 'body' ).removeClass( 'show-filters filters-applied show-favorites-form' );
|
||||||
|
|
||||||
// Get the themes by sending Ajax POST request to api.wordpress.org/themes
|
// Get the themes by sending Ajax POST request to api.wordpress.org/themes
|
||||||
// or searching the local cache
|
// or searching the local cache
|
||||||
|
|
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.4-beta4-35646';
|
$wp_version = '4.4-beta4-35647';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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