Hi I'm trying to put Bootstrap library in my rails application, I put the script css in Stylesheets, it's working fine, and the js file in Javascript folder, I have no error in the console, I added in my application.js:
//= require bootstrap.min
after the jquery include. I tried with the bootstrap not minimized too
I tried in the application:
$(document).ready(function () {
$("[rel=tooltip]").tooltip({
animation: true,
html : true,
});
});
and in my html (haml syntax):
%a{"data-toggle" => "tooltip", :href => "#", :title => "first tooltip"} Test
But nothing works, do you have an idea?
thanks by advance for help