-
Notifications
You must be signed in to change notification settings - Fork 724
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jQuery UI dependency #263
Comments
Hi @Aurelain! Yes, that is a good idea... odd that I never noticed any issues before. I'll have this added in the next update. |
I did a fiddle at http://jsfiddle.net/liftarn/8qgBK/ |
Also try http://jsfiddle.net/liftarn/MK947/2018/ with and without jQuery UI and notice that the position of the pop-up is different. |
You are right about that. To achieve true independence, some extra code would need to be added. My use-case: I'm taking over the positioning of the keyboard from outside. Thus, for me, jQuery UI is unnecessary. That missing clause forced me to add a dummy "$.ui = {}" :). |
Ok, this should be fixed in 1.19.0. Thanks for your patience! |
It would be helpful to achieve independence from jQuery UI.
Currently, on line 258, the following check is performed:
This is the only place where $.ui is required.
I propose adding an extra check, like the following:
The text was updated successfully, but these errors were encountered: