codrops / SimpleDropDownEffects

A jQuery plugin for transforming select inputs into drop-down lists with some simple expanding effects.
446 stars 110 forks source link

BugFix for mobile #6

Closed VanillaThunder closed 11 years ago

VanillaThunder commented 11 years ago

Hi, this is a bugfix for mobile devices.

First let me clarify: You make really awesome things which is great, but you unfortunately never follow up on them, like adding features or support. :(

BugFix to get this working also for mobile (iOS):

this.selectlabel.on( 'mousedown.dropdown, touchstart.dropdown', function( event ) {
                self.opened ? self.close() : self.open();
                return false;

2 more things: A. As other users also suggested, I would very much like to see a "default item option"

B. I would as well much suggest you to check first for translate support (using modernizer) and then use transalte3d instead of top. This will result in much smoother results (and is important for mobile) !

botelho commented 11 years ago

Thanks for the contribution and suggestions!

VanillaThunder commented 11 years ago

Will there (ever) be an update with the proposed changes ? Or are you just letting this plugin "go down" ?

botelho commented 11 years ago

You are free to add any of your suggested changes. Thanks.