mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Themes screens: Lose search input focus when pressing enter.
This allows the keyboard to close on iOS, for example. props matveb. fixes #27233. git-svn-id: https://develop.svn.wordpress.org/trunk@27555 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f4cc32fac9
commit
ad650e283b
@ -803,6 +803,11 @@ themes.view.Search = wp.Backbone.View.extend({
|
||||
event.target.value = '';
|
||||
}
|
||||
|
||||
// Lose input focus when pressing enter
|
||||
if ( event.which === 13 ) {
|
||||
this.$el.trigger( 'blur' );
|
||||
}
|
||||
|
||||
this.collection.doSearch( event.target.value );
|
||||
|
||||
// if search is initiated and key is not return
|
||||
|
||||
Loading…
Reference in New Issue
Block a user