ehynds / jquery-ui-multiselect-widget

jQuery UI MultiSelect widget

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Selecting a checkbox with the Space key does not work in Firefox.

obinakiller opened this issue · comments

What is the current behavior?

In the Firefox 65.0.2 (64-bit) browser, the selection of the checkbox using the space key is not working, only with the ENTER key. In the Google Chrome browser, for example, it works normally.

What is the expected behavior?

Select the checkbox with the space key.

Please tell us about your setup

  • Version: 3.0.0
  • Browser: Firefox 65.0.2 (64-bit)
  • Other frameworks in use:

Interestingly, if you press and hold space it starts to select and if you hold it long enough it will start toggling on and off.

Looks like we're using e.which which is actually deprecated now according to mdn so we should switch to e.key. Don't know if that will help with this issue though.