Bootstrap Switching to Sass Javascript Error

I accompanied Ryan Railscast 328 and 329 .

Everything worked fine until I switched to downloading at 329. Now I get this error:

Uncaught TypeError: Object [object Object] has no method 'popover' 

This comes from bootstrap.js . bootstrap.js loads after jquery.js (this is version 1.7.1.

My application.js file:

 // This is a manifest file that'll be compiled into application.js, which will include all the files // listed below. // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. // // It not advisable to add code directly here, but if you do, it'll appear at the bottom of the // the compiled file. // // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT TO BE PROCESSED, ANY BLANK LINE SHOULD // GO AFTER THE REQUIRES BELOW. // //= require jquery //= require jquery_ujs //= require bootstrap //= require_tree . 

Is there any other file I need?

thanks

+4
source share
1 answer

There cannot be a file named bootstrap javascript folders. Sprockets finds this file instead of the files in stone.

+9
source

Source: https://habr.com/ru/post/1403964/


All Articles