TarekRaafat / autoComplete.js

Simple autocomplete pure vanilla Javascript library.
https://tarekraafat.github.io/autoComplete.js
Apache License 2.0
3.93k stars 236 forks source link

Pressing Esc clears the input, user loses data when *editing* as opposed to initial input #402

Open silvium opened 1 year ago

silvium commented 1 year ago

I stored the initial value of the element in initialValue

in listController.js

        // Esc
        case 27:
            ctx.input.value = ("" + ctx.initialValue).length === 0 ? ctx.input.value : ctx.initialValue;