When you add a new controller in Rails 3.1, a new JS file added, fx, controller.js.coffee. I thought this file is included ONLY when this controller is called. But it seems like default instruction //= require_tree includes all the files in the /app/assets/javascripts directory.
Has anyone faced similar problem and how did you solve it?
| ||||
|
feedback
|
|
To load only the necessary name_of_the_js_file.js file: 1- remove the //=require_tree . from application.js 2- keep your js file that you want to load when a specific page is loaded in the asset pipeline 3- add a helper in application_helper.rb
4- yield into your layout:
5- add this in your view file:
Then it should be ok | |||||||||||||
feedback
|
|
An elegant solution for this is to require controller_name in your javascript_include_tag see http://apidock.com/rails/ActionController/Metal/controller_name/class
controller_name.js will be loaded and is in the asset also, so you can require other files from here. Example, rendering cars#index will give
where cars.js can contain
Enjoy ! | |||||||
feedback
|