-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Sample code for Dialog is broken #2183
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
Comments
This looks good to me on Windows with latest FF. Can you check again? Using |
firefox tries to load the file with file:// if opened locally GET file://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css net::ERR_FILE_NOT_FOUND Including this would fix the issue if the file is stored locally: But using https:// instead of // might be easier. |
Thanks for the report; fixed in jquery/jqueryui.com@7945c96. It should be deployed soon. |
All the samples for each type of Dialog screen here:
https://jqueryui.com/dialog
The main CSS file is incorrectly linked, resulting in the modal not working correctly, such as not being resizable and everything looking wrong.
The HTTP protocol is missing:
href="//code.jquery.com
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
The text was updated successfully, but these errors were encountered: