RailsCasts Pro episodes are now free!

Learn more or hide this

Mark Ericksen's Profile

GitHub User: brainlid

Site: brainlid.posterous.com

Comments by Mark Ericksen

Avatar

This is late, but a tip for others...

Assuming the reason is for viewing it yourself in a browser, the easiest (and general fix) is to use a nice browser plugin. There are two plugins both named "JSONView" for Chrome and Firefox. I use the Chrome one. Very nice tool for viewing JSON API responses.

Avatar

While deleting bootstrap.js.coffee stops the error, it also makes it so those Bootstrap features won't be available in your application.

ruby
//= require jquery
//= require jquery_ujs
//= require twitter/bootstrap
//= require bootstrap
//= require_tree .

The key is to add the "twitter/bootstrap" before the "bootstrap". Then the functions should be available. Check your page source in development mode to verify that a number of bootstrap js files get included.