diff --git a/ui/picker.js b/ui/picker.js index 05fb4946ac..8da8b3a085 100644 --- a/ui/picker.js +++ b/ui/picker.js @@ -23,7 +23,8 @@ class Picker { if (option.hasAttribute('value')) { item.dataset.value = option.getAttribute('value'); } - item.addEventListener('click', this.selectItem.bind(this, item, true)); + item.addEventListener('mouseup', this.selectItem.bind(this, item, true)); + item.addEventListener('touchend', this.selectItem.bind(this, item, true)); return item; }