Rails アプリケーションでブートストラップ ポップオーバーを正しく動作させるのに問題があります。他の質問に対する解決策を試しましたが、成功しませんでした。
現在私のHTMLには次のものがあります:
<i class="icon-exclamation-sign" id="info" rel="popover" data-content="some info"></i>
と
<script>
$(function () {
$(".icon-exclamation-sign").popover();
});
</script>
私のapplication.jsは次のようになります:
//= require jquery
//= require jquery_ujs
//= require bootstrap-datepicker
//= require_tree .
//= require bootstrap-tooltip
//= require bootstrap-popover
私のapplication.cssは次のようになります:
/*
*= require_tree .
*= require bootstrap-datepicker
*/
そして、次のエラーが表示されます: Uncaught TypeError: Object [object Object] has no method 'popover' when loading the page. 私は何を間違っていますか?
編集: また、application.js でツールチップとポップオーバーの代わりに require ブートストラップを使用しようとしましたが、うまくいきませんでした。