I adding in my rails app "audiojs" music player (http://kolber.github.com/audiojs/)
on localhost all good and work, but heroku says:
"We're sorry, but something went wrong."
log
ActionView::Template::Error (audiojs/audio.min.js isn't precompiled)
how to solve the problem?
The problem is in your main page javascript. You're trying to load a track, but the elements you're looking for don't exist so you're getting the undefined error.
Whereas, you're setting
data-src="<%= show.preview %>"
inreleases/show.html.erb
(andindex.html.erb
) and the code works without issue there.Your options are to detect if there are no order list items and not try to automatically play an audio track, or add audio tracks to your main page.