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
If the dialog contains a link <a> inside its body, if the user clicks on it the dialog will disappear.
<a>
This issue came from L.363
$("a", div).click(function(e) { e.preventDefault(); hideSource = 'button'; div.modal("hide"); var handler = $(this).data("handler"); var cb = callbacks[handler]; if (typeof cb == 'function') { cb(); } });
$("a", div) should be $(".modal-footer a", div)
$("a", div)
$(".modal-footer a", div)
The text was updated successfully, but these errors were encountered:
Thanks for this - you're quite right. I'll get it sorted this morning.
Sorry, something went wrong.
fix incorrect button binding (GH-21)
b02453f
Sorted in v2.1.1 - thanks :)
No branches or pull requests
If the dialog contains a link
<a>
inside its body, if the user clicks on it the dialog will disappear.This issue came from L.363
$("a", div)
should be$(".modal-footer a", div)
The text was updated successfully, but these errors were encountered: