diff --git a/ui/picker.js b/ui/picker.js index 05fb4946ac..2c0a7d3d0b 100644 --- a/ui/picker.js +++ b/ui/picker.js @@ -45,6 +45,11 @@ class Picker { this.selectItem(item); } }); +/**/ var expand = function expand(event) {//fast fix #665 +/**/ event.preventDefault(); //to do: maybe need fix this.selectItem(); or other component +/**/ }; +/**/ options.addEventListener('mousedown', expand); +/**/ options.addEventListener('touchstart', expand); this.container.appendChild(options); }