Don't ignore backspace in the search box

This commit is contained in:
Amir E. Aharoni
2013-04-10 18:57:20 +03:00
parent 8a82d7f0b1
commit d410338c93

View File

@@ -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;
} }