Bootstrap Dropdown menu is not working

后端 未结 18 648
没有蜡笔的小新
没有蜡笔的小新 2020-11-30 23:18

I am having trouble getting my dropdowns to work. I can get the navbar to show up perfectly, but when I click on \"Dropdown\" (either of them) it does not display the dropdo

18条回答
  •  -上瘾入骨i
    2020-12-01 00:06

    I am using rails 4.0 and ran into the same problem

    Here is my solution that passed test

    add to Gemfile

    gem 'bootstrap-sass'
    

    run

    bundle install
    

    then add to app/assets/javascripts/application.js

    //= require bootstrap
    

    Then the dropdown should work

    By the way, Chris's solution also work for me.

    But I think it is less conform to the asset pipeline idea

提交回复
热议问题