UMD / AMD çözümü
UMD üzerinden yapan ve derleme yapanrequire.js
için laconic bir çözüm var.
Modül tanımının önüne UMD olarak tether
yüklenen bağımlılık gerektiren modülde, Tooltip
Tether tanımına kısa bir snippet koyun:
// 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
*/
//...
});
Başlangıçta bu kısa snippet, aslında uygulamanızın daha yüksek bir seviyesine, en önemli şeye konabilir - bağımlılığı olan bootstrap
bileşenlerin gerçek kullanımından önce çağırmak 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']
}
UDP: In Boostrap onlar yerini 4.1 Kararlı Tether ile Popper.js , bkz kullanıma belgelere .