GitHub User: brainlid
Site: brainlid.posterous.com
While deleting bootstrap.js.coffee stops the error, it also makes it so those Bootstrap features won't be available in your application.
//= 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.
While deleting bootstrap.js.coffee stops the error, it also makes it so those Bootstrap features won't be available in your application.
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.