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