20

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 work on localhost. There appear to be no errors displayed when deployed to Heroku (the features simply don't show up).

Any ideas? Thanks!

7
  • If you put some console.log lines in, do you get anything out? Commented Apr 18, 2012 at 18:14
  • 1
    I don't know anything about Heroku (first time I've ever heard the name before), but JavaScript is executed on the client-side. So as long as you are using the same browser and the JavaScript code is the same, you should get the same behavior. Try viewing the source code (from the right-click menu or Edit menu in your browser) for both scenarios and compare for differences. Commented Apr 18, 2012 at 18:17
  • Are the Javascript files being pulled correctly (what does Firebug say)? If so, do you have any code specific to localhost domain? Commented Apr 18, 2012 at 18:17
  • jimw: I tested console.log and I get an output in localhost, but nothing when its deployed to heroku. Commented Apr 18, 2012 at 19:42
  • Using Chrome, and the error I see in the inspector says: "Uncaught TypeError: Object [object Object] has no method 'popover' Commented Apr 18, 2012 at 19:44

8 Answers 8

15

Manually precompiling worked for me.

bundle exec rake assets:precompile before you push to heroku.

Sign up to request clarification or add additional context in comments.

2 Comments

This seems to be the way to go if you manually include bootstrap.js and bootstrap.css instead of using the gem
heroku does that for ya
6

I had the exact same issue (I'm very new to Rails). I eventually solved the issue by rearranging the order of files within application.js:

//= require jquery
//= require jquery_ujs
//= require twitter/bootstrap

For the javascripts to work in development, "require jquery" needed to be after "require twitter/bootstrap." In production, jquery needed to come first. Not sure what caused this, but it now works when deployed to Heroku.

I used these two posts:

javascript - Twitter bootstrap jquery plugins not compiled for production

twitter bootstrap drop down suddenly not working

1 Comment

Rails 4.2.5 update: //= require jquery //= require jquery_ujs //= require bootstrap //= require angular //= require 'leaflet.js' //= require leaflet //= require_tree . Dropdowns work on Heroku, but bootstrap needs to be second on localhost. Is there a way to fix this or at least have it work on both Heroku and localhost without changing application.js? PS. Can't seem to format comments.
5

Check your production.rb file. I believe the line needs to be:

config.assets.compile = true

I believe this gets set to false by default.

1 Comment

Warning: Richard Hulse advises not to turn this on here: stackoverflow.com/questions/8821864/…
2

Remember that everything that you would normally do on localhost, you must be doing with heroku. Make sure you heroku run rake assets:precompile.

Comments

1

I also had similar problem but the problem was happening on localhost as well.

You are probably using rails-bootstrap gem. It installs a file bootstrap.coffee.js This file was culprit. It had .popover use and relevant plugin was not included. I commented that out as I was not using it anyway but you should consider including the popover plugin for bootstrap.

1 Comment

I followed what you said and as soon as I deleted my coffee file , all is working, yet I wanna know do you have any source to back your claim?
1

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.

Comments

0

Updating sprockets worked for me: bundle update sprockets

Comments

-1

If you've already tried heroku run rake assets:precompile and the JS still isn't working, try doing heroku restart to restart the server after precompiling assets.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.