下記環境のdevelopment環境にてdropdownが動かない、herokuのproduction環境では正常に動作するという事象に遭遇しました。
- 環境
- OS:MacOSX 10.7.5
- Ruby:1.9.3p194
- Rails:3.2.13
- twitter-bootstrap-rails:2.2.6
- 原因
railsのasseteのprecompileという動作が原因のよう。こちら参照。
- 対処
こちらを参考に、config/environments/development.rbを編集。
変更前
- config.assets.debug = true
変更後
- config.assets.debug = false
以上