My Rails website features various CSS animation effects and JavaScript elements. While these transitions function smoothly on my local environment, they do not work properly on Heroku.
Examining the Heroku logs:
2013-09-17T17:13:36.081145+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2013-09-17T17:13:36.090362+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.0ms)
... (Heroku log continues)
The JavaScript and CSS files are located in the assets/javascripts and stylesheets directories. These assets are compiled at runtime. Despite being loaded onto Heroku as observed through Firebug's inspection of the head
section, the animations still fail to function correctly on the live site compared to the expected behavior demonstrated by this example.
How come the site works flawlessly locally but encounters issues on the Heroku platform?