UMD/AMD ソリューション
UMDを介して実行し、 を介してコンパイルする人require.js
には、簡潔な解決策があります。
依存関係として必要なモジュールでは、UMD としてtether
ロードTooltip
され、モジュール定義の前に、Tether の定義に短いスニペットを配置するだけです。
// First load the UMD module dependency and attach to global scope
require(['tether'], function(Tether) {
// @todo: make it properly when boostrap will fix loading of UMD, instead of using globals
window.Tether = Tether; // attach to global scope
});
// then goes your regular module definition
define([
'jquery',
'tooltip',
'popover'
], function($, Tooltip, Popover){
"use strict";
//...
/*
by this time, you'll have window.Tether global variable defined,
and UMD module Tooltip will not throw the exception
*/
//...
});
最初のこの短いスニペットは、実際にはアプリケーションの上位レベルに置くことができます。最も重要なことは、依存関係のあるbootstrap
コンポーネントを実際に使用する前に呼び出すことです。Tether
// ===== file: tetherWrapper.js =====
require(['./tether'], function(Tether) {
window.Tether = Tether; // attach to global scope
// it's important to have this, to keep original module definition approach
return Tether;
});
// ===== your MAIN configuration file, and dependencies definition =====
paths: {
jquery: '/vendor/jquery',
// tether: '/vendor/tether'
tether: '/vendor/tetherWrapper' // @todo original Tether is replaced with our wrapper around original
// ...
},
shim: {
'bootstrap': ['tether', 'jquery']
}
UPD: Boostrap 4.1 Stableでは、 TetherをPopper.jsに置き換えました。使用法に関するドキュメントを参照してください。