We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since the change with bs3 using a remote url with a modal doesn't display correctly.
<a data-toggle="modal" href="URL" data-target="#MODAL" tabindex=-1>Click Me</a>
<div class="modal fade" id="MODAL" tabindex="-1" role="dialog" aria-hidden="true"> content ends up here! </div>
<div class="modal fade" id="MODAL" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-body"> content should go here </div> <div class="modal-footer"> <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button> </div> </div> </div> </div>
adding
<div class="modal-dialog"> <div class="modal-content"> <div class="modal-body"> ...
to the remote url fixes the issue
The text was updated successfully, but these errors were encountered:
This is a deliberate change in semantics that is already mentioned in the migration docs.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Since the change with bs3 using a remote url with a modal doesn't display correctly.
adding
to the remote url fixes the issue
The text was updated successfully, but these errors were encountered: