Adam

Results 141 comments of Adam

Don't think so, but I don't use this anymore. I did use tween.js here and there and it's very easy to use.

Yes! I have the same issue! https://imgur.com/a/NZsZzT9 The first movements are at G1 F9000, the next are at G1 F10000 This also happens on the diagonal, at much lower speeds...

Here's a continuation of this project that works pretty well. It has a couple bugs that could probably be handled pretty well if there were some more people supporting it....

You can already do that. Put your hash method in options.hash

Fix: around line 99: ``` $(g.nDiv).height('auto'); var nd = parseInt($(g.nDiv).height()); if (nd >= newH) $(g.nDiv).height(newH).width(200); ``` Setting nDiv to height auto will set nd to the proper height. And making...

If I do an npm install the files are proper

I've been using @uzlov code, rather than modifying the code I just go: ``` javascript s2Obj = $(element).data('select2'); delete s2Obj.listeners.keypress; s2Obj.on('keypress', function (evt) { //his code here }); ``` ~~But...

Note: in @uzlov code, the KEYS.DOWN and KEYS.UP items should be changed to only select the enabled options: ``` javascript if (key === KEYS.DOWN) { var val = s2Obj.$element.find('option:selected').nextAll(":enabled").first().val(); if...

I'm experiencing this as well. I did notice the fieldset disabled selector issue was recently fixed in jquery: https://github.com/jquery/sizzle/pull/283 https://github.com/jquery/sizzle/issues/174 Seems it will roll out in JQ2.3.

This issue is not stale. It still exists in 4.0.12 Also, IE doesn't matter much anymore. All the other browsers support disabled fieldset including Edge: https://caniuse.com/#feat=fieldset-disabled Please re-open.