ember-widgets
ember-widgets copied to clipboard
SelectOptionView does not work on iOS devices
I've only tested on the iOS simulator so far, but I have noticed in my own code, and on the product demo page (http://addepar.github.io/#/ember-widgets/select) that the select event does not work on iOS devices (I've been focusing on the iPad in particular). You can open the drop down menu, but can not select anything from it.
Has anybody else looked at this problem? Before trying to figure it out myself I wanted to see if anyone else has already made progress on this.
Thanks! Andrew
FYI - At least in iPad simulator I have found that if I add a css style to set the cursor to a pointer this fixes the problem. Added _class="cursor"_ to my select-component helper and then in my css:
.cursor {
cursor: pointer;
}
Thanks for pointing this out, @acechase! If you have time, submit a PR - if not, I'll come back to this in a few days and make the change myself.