Решение UMD / AMD
Для тех парней, которые делают это через UMD и компилируют через require.js
, есть лаконичное решение.
В модуле, который требует tether
в качестве зависимости, которая загружается Tooltip
как UMD, перед определением модуля, просто поместите короткий фрагмент определения 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 , см. Документацию по использованию .