I wanted to create a basic "destroy" link in Rails today, so I wrote this:
<%= link_to "destroy me", @company, :method=>:delete
%>
The generated code was:
<a href="/companies/1"
data-method="delete"
rel="nofollow">destroy me</a>
In my routes, the usual
resources :companies
And my destroy action was in my controller.
But anytime I would click on the link, I would be redirected to the show action. Weird.
It turned out I didn't include the following line in my layout:
<%= javascript_include_tag :defaults %>
After including it, the destroy link worked!
Why? Why would I need to include the default javascript tags to make this work?
And since I don't want to use prototype, how do I only include the files I need?