I am pretty new at this but I learned the basics of using Rails off of Codecademy and am trying to figure out how to build a basic website using a template I found.
I have been using this template: http://templated.co/retrospect and I was able to deploy almost everything but the JQuery it uses. The Rails lesson didn't cover how to add JQuery the template provides for the menu bar action (if you press the menu button, it pulls out a sidebar with menu options).
In the template files, it provides assets/js files:
I tried putting these in my app/assets/javascripts folder of my rails app, but the menu action does not seem to be working. I checking in application.js and I do have //= require_tree . in there.
Would you be able to guide me on how to make this work?
Thank you so much!
Edit: I already have the 'jquery-rails' gem installed with //= require jquery //= require jquery_ujs in my application.js