-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Cursor disappears after selecting option in select multiple when using CDN provided version #2072
Comments
Most likely, the external CDN takes slightly longer to load than your local resource, therefore impacting the load order of named JS files. You could try wrapping both local and CDN based scripts in a delay load to test late loading it from both sources. You can also download the CDN file and compare it to what you have byte for byte. They should match, it's been the same files for awhile now. You probably have something, capturing an event after the selection is made for onChange or onBlur. I'd set a debugger and trace everything after selection. Chrome's debug tools are powerful once you figure out how to capture events on elements. |
It looks that docs are using newer version (dev-master?) which is marked with wrong version number. So this behavior was probably fixed between 0.15.2 and master branch. |
I haven't done a release, maybe @risadams can run that command for us. Thanks. |
hello all, I have stepped down as a maintainer in Feb of this year and no longer have push access to make and changes. Outside of answering general questions and keeping the domain renewed I don't have the ability to do much these days. |
+1 I report the same issue with version (0.15.2) |
Hello! |
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days |
I did:
like below
I have a problem with select multiple - when I use script from CDN the cursor disappears after first selection. When using script from documentation server it works just fine.
Steps to reproduce:
Expected result: Cursor should be visible
Actual result: On CDN provided version cursor is not visible, but when using script from documentation server it works just fine.
There are some differences between these scripts despite the fact that both have same version number (0.15.2).
Is CDNJS script, which link was copied from docs, broken?
The text was updated successfully, but these errors were encountered: