You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
Tested on Safari iphone 7, had to double tap items in dropdown box to select/deselect them. Hard-fixed by adding touchstart eventlistener for mobile devices with the same function as it is now only for click. (line 1339 /src/selectr.js)
this.tree.addEventListener("click", function(e) { var item = util.closest(e.target, function(el) { return el && util.hasClass(el, "selectr-option"); });
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Tested on Safari iphone 7, had to double tap items in dropdown box to select/deselect them. Hard-fixed by adding touchstart eventlistener for mobile devices with the same function as it is now only for click. (line 1339 /src/selectr.js)
this.tree.addEventListener("click", function(e) { var item = util.closest(e.target, function(el) { return el && util.hasClass(el, "selectr-option"); });
The text was updated successfully, but these errors were encountered: