Don't ignore backspace in the search box
This commit is contained in:
@@ -93,7 +93,9 @@
|
||||
default:
|
||||
var languageFilter = this;
|
||||
|
||||
if ( e.which < 32 ) {
|
||||
if ( e.which < 32 &&
|
||||
e.which !== 8 // Backspace
|
||||
) {
|
||||
// ignore any ASCII control characters
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user