Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bootstrap-global-this-define.js « javascripts « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3a3cc133e33c5c4e4b6da5fd9ca0a24a0a18c38 (plain)
1
2
3
4
5
6
// Set a `globalThis` so that bootstrap components are defined on window.bootstrap instead of window.
window['bootstrap'] = {
  "@popperjs/core": window.Popper,
  _originalGlobalThis: window['globalThis']
};
window['globalThis'] = window['bootstrap'];