Michael Lang
Michael Lang
@blaszczakphoto you're absolutely right, there are indeed tons of dependencies currently imported into the gem and thus the Rails project that are not needed. I unfortunately am working under a...
Can you verify that you're initializing jquery in your Rails 6 app per instructions in the gem's readme? https://github.com/rails/jquery-rails
I didn't heavily test. Which specific page and dropdown menu are you looking at? Are you able to see it working from the demo app I published? https://github.com/mwlang/gentelella-rails-demo
@buffalods any luck?
@jayjlawrence thanks for the detailed info. With that, I was able to quickly fix. I've pushed a new release 0.1.1 and the fix is on master branch as well.
I think that the bootstrap init javascript isn't loading late enough in the chain. Reopening this one to look into also fixing modal windows, etc.
I found the root cause to this problem. Turns out I made a mistake including "bootstrap-sprockets" AND "bootstrap" in the gem's main coffee script file that pulls in all the...
@kirillseva and @hatens Sorry for my non-responsiveness on this. I've been under a heavy workload for a while. from the sounds of it, it does sound like a turbo-link issue....
coffee-rails dependency added. I incorrectly assumed at outset Rails projects using this would also always use coffee-rails. Although I've added the dependency and released as 0.1.10 just now, the smarter...
edit_user_registration_path is provided by Devise. Check your config/routes.rb file. You should have a line injecting devise's named routes into the application's router: ``` devise_for :users, :controllers => { :confirmations =>...