I\'ve noticed that when I deploy to Heroku, javascript features dont work (such as Bootstrap Popover, Buttons, etc). I\'m working with rails 3.2.2, ruby 1.9.3. The features
Checked the minified js for my app, and popover was twice in the file.
Be sure that only one of bootstrap and boostrap-sprockets is declared in your javascript assets
From the docs:
bootstrap-sprockets and bootstrap should not both be included in application.js.
bootstrap-sprockets provides individual Bootstrap Javascript files (alert.js or dropdown.js, for example), while bootstrap provides a concatenated file containing all Bootstrap Javascripts.
Be sure that only one of bootstrap and bootstrap sprockets
Refs: bootstrap-sass github issue and here.