- Issue created by @iSampo
- @isampo opened merge request.
When the backspace is being pressed, no items are being removed. The autocomplete_deluxe.js code has some handling for the backspace, called inside the keypress
event. I don't know if this has ever worked, as keypress
event
is fired when a letter, number, punctuation, or symbol key is pressed
https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event
It's also deprecated and should be replaced with keydown.
Enter some things with the autocomplete deluxe widget. Press backspace to get rid of items. Items are not deleted.
Replace keypress
with keydown
.
Active
2.1
Code (miscellaneous)