I am using the Rails 4 application. I installed some JavaScript plugin files in "vendor / assets / javascripts" and some in "app / assets / javascripts", where I have files that call methods from vendor files.
None of the methods are recognized, and it seems that the files "app / assets / javascripts" are loaded before the files "vendor / assets / javascripts". How can I handle this?
For information called by me "application.js":
and i use gem 'jquery-rails'.
source
share