Galleria Not Showing Up On Heroku In Rails App
For my Rails app I'm using Galleria - http://galleria.io/ It all works fine locally, but when I deploy the app to heroku, galleria is gone. Not really sure why.. Here's my code :
Solution 1:
The answer in more detail is here: Where to put Galleria (jQuery image gallery framework) in Rails 3.1 Asset Pipeline?
I had to change this line in galleria.classic.js
css:'galleria.classic.css',
with
css:false,
And it worked!
Post a Comment for "Galleria Not Showing Up On Heroku In Rails App"