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
Just a little improvement for automatic binds to links.
I found this problem when i needed add "nofollow" for some SEO treatments in my projects.
Just change the selectors below to "a[rel~="modal:close"]" and "a[rel~="modal:open"]" instead of rel="...".
rel="..."
... $(document).on('click.modal', 'a[rel="modal:close"]', $.modal.close); $(document).on('click.modal', 'a[rel="modal:open"]', function (event) { event.preventDefault(); $(this).modal(); }); ...
The text was updated successfully, but these errors were encountered:
c6fc99c
Good catch, thanks for the fix!
Sorry, something went wrong.
No branches or pull requests
Just a little improvement for automatic binds to links.
I found this problem when i needed add "nofollow" for some SEO treatments in my projects.
Just change the selectors below to "a[rel~="modal:close"]" and "a[rel~="modal:open"]" instead of
rel="..."
.The text was updated successfully, but these errors were encountered: