Rozwiązanie UMD / AMD
Dla tych gości, którzy robią to przez UMD i kompilują przezrequire.js
, jest lakoniczne rozwiązanie.
W module, który wymaga tether
jako zależności, która ładuje się Tooltip
jako UMD, przed definicją modułu, wystarczy umieścić krótki fragment definicji 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
*/
//...
});
Ten krótki fragment na samym początku, właściwie może być umieszczony na dowolnym wyższym poziomie aplikacji, najważniejsze - aby wywołać go przed faktycznym użyciem bootstrap
komponentów z Tether
zależnościami.
// ===== 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: W Boostrap 4.1 Stable zastąpili Tether przez Popper.js , zobacz dokumentację użycia .