ember-widgets icon indicating copy to clipboard operation
ember-widgets copied to clipboard

SelectOptionView does not work on iOS devices

Open acechase opened this issue 10 years ago • 2 comments

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

acechase avatar Jun 02 '14 21:06 acechase

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;
    }

acechase avatar Jun 02 '14 21:06 acechase

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.

azirbel avatar Jul 18 '14 22:07 azirbel