fastmail/Squire

Lists are not created automatically on Chrome Android

nokhub opened this issue · 0 comments

When entering "1.[SPACE]" or "*[SPACE]" in Android Chrome, no lists are created.

I hosted the Demo.html file and accessed it with an Android phone. With Firefox the lists are created as expected, but in Chrome it does not work.

The problem lies in the following lines, where the keyCode on Chrome Android is always 229, no matter which key is pressed.

var _onKey = function(event) {
  const code = event.keyCode;
  let key = keys[code];