Merge pull request #83 from amire80/bug_42383

Don't ignore backspace in the search box
This commit is contained in:
Santhosh Thottingal
2013-04-11 03:39:34 -07:00

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