| 12345678910111213 |
- // Compatibility wrapper: if some pages still request /assets/bootstrap.min.js, load the bundle instead
- (function(){
- try {
- var cur = document.currentScript;
- var s = document.createElement('script');
- s.src = '/assets/bootstrap.bundle.min.js';
- s.async = false;
- if (cur && cur.parentNode) cur.parentNode.insertBefore(s, cur.nextSibling);
- else document.head.appendChild(s);
- } catch (e) {
- console.warn('bootstrap wrapper failed to load bundle', e);
- }
- })();
|