問題発生
状態:-
閲覧数:3,062
投稿日:2016-01-15
更新日:2016-01-15
Chromeコンソール画面に下記エラーメッセージが表示される
修正前
修正後
・bootstrap.min.jsの前に、tether.min.jsを読み込む
・もしくは、Tetherよりダウンロード後、読込
Uncaught Error: Bootstrap tooltips require Tether (http://github.hubspot.com/tether/)
取り敢えずの対応
修正前
<script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.min.js"></script><!-- Bootstrap -->
修正後
・bootstrap.min.jsの前に、tether.min.jsを読み込む
script src="https://www.atlasestateagents.co.uk/javascript/tether.min.js"></script><!-- Tether for Bootstrap -->
<script src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.min.js"></script><!-- Bootstrap -->
・もしくは、Tetherよりダウンロード後、読込
bootstrapスクリプトが、tetherオブジェクトを見つけることが出来ないときに発生するエラー
bootstrapスクリプトが読み込まれる際、tetherオブジェクトを見つけることが出来ないために発生するエラーだと思います。bootstrap.min.jsをインクルードする前に tether.min.jsスクリプトをインクルードしてみてください
I think you're getting the error because when the bootstrap script loads, it's unable to find the tether object. Try including the tether.min.js script before you include the bootstrap.min.js script.
・How to fix the error; 'Error: Bootstrap tooltips require Tether (http://github.hubspot.com/tether/)'Bootstrapツールチップを使用していなくて、Tetherを含めたくない場合は、Bootstrapのtooltip.jsを排除する必要があります。
あなたがBootstrapツールチップを使用していなくて、Tetherを含めたくない場合は、Bootstrapのtooltip.jsを排除する必要があります(これは連結されたデフォルトのbootstrap[.min].jsファイルを使用しないことも意味します)。
If you're not using Bootstrap tooltips and don't want to include Tether, then you'll need to exclude Bootstrap's tooltip.js (which may mean not using the default concatenated bootstrap[.min].js file).
・`Bootstrap tooltips require Tether` error is logged to console when not using tooltips