-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
Dropdown conflicts with jquery_ujs on Rails #4688
Labels
Comments
I am experiencing this as well |
A quick fix is to change config.sign_out_via = :delete to config.sign_out_via = :get in devise.rb |
Hey @fabiob, Thanks for opening this issue! Unfortunately, it looks like it fails to pass the criteria neccessary for submitting to bootstrap. The following things are currently failing:
For a full list of issue filing guidelines, please refer to the bootstrap issue filing guidelines. thanks! |
:| |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Today I upgraded my application from Bootstrap 2.0.4 to 2.1.0, and some of the hyperlinks on my dropdowns are not working anymore.
The specific issue is with hyperlinks managed by Rails' jQuery UJS: the "sign off" link uses a data attribute in order to perform a DELETE request, like this:
With Bootstrap 2.1.0, the link acts as if the
data-method
was not present, and clicking it performs a simple GET request. If I downgrade to Bootstrap 2.0.4, it works fine.The text was updated successfully, but these errors were encountered: