Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
pdpa /
src /
js /
free /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
alert.js
2.27
KB
-rwxr-xr-x
button.js
7.32
KB
-rwxr-xr-x
carousel.js
2.64
KB
-rwxr-xr-x
dropdown.js
7.17
KB
-rwxr-xr-x
input.js
12.11
KB
-rwxr-xr-x
modal.js
3.5
KB
-rwxr-xr-x
popover.js
3.24
KB
-rwxr-xr-x
range.js
4.73
KB
-rwxr-xr-x
ripple.js
12.78
KB
-rwxr-xr-x
scrollspy.js
4.47
KB
-rwxr-xr-x
tab.js
5.05
KB
-rwxr-xr-x
toast.js
2.86
KB
-rwxr-xr-x
tooltip.js
3.26
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : alert.js
import { getjQuery, onDOMContentLoaded } from '../mdb/util/index'; import EventHandler from '../mdb/dom/event-handler'; import SelectorEngine from '../mdb/dom/selector-engine'; import BSAlert from '../bootstrap/mdb-prefix/alert'; /** * ------------------------------------------------------------------------ * Constants * ------------------------------------------------------------------------ */ const NAME = 'alert'; const DATA_KEY = `mdb.${NAME}`; const EVENT_KEY = `.${DATA_KEY}`; const EVENT_CLOSE_BS = 'close.bs.alert'; const EVENT_CLOSED_BS = 'closed.bs.alert'; const EVENT_CLOSE = `close${EVENT_KEY}`; const EVENT_CLOSED = `closed${EVENT_KEY}`; const SELECTOR_ALERT = '.alert'; class Alert extends BSAlert { constructor(element, data = {}) { super(element, data); this._init(); } dispose() { EventHandler.off(this._element, EVENT_CLOSE_BS); EventHandler.off(this._element, EVENT_CLOSED_BS); super.dispose(); } // Getters static get NAME() { return NAME; } // Private _init() { this._bindCloseEvent(); this._bindClosedEvent(); } _bindCloseEvent() { EventHandler.on(this._element, EVENT_CLOSE_BS, () => { EventHandler.trigger(this._element, EVENT_CLOSE); }); } _bindClosedEvent() { EventHandler.on(this._element, EVENT_CLOSED_BS, () => { EventHandler.trigger(this._element, EVENT_CLOSED); }); } } /** * ------------------------------------------------------------------------ * Data Api implementation - auto initialization * ------------------------------------------------------------------------ */ SelectorEngine.find(SELECTOR_ALERT).forEach((el) => { let instance = Alert.getInstance(el); if (!instance) { instance = new Alert(el); } }); /** * ------------------------------------------------------------------------ * jQuery * ------------------------------------------------------------------------ * add .rating to jQuery only if jQuery is present */ onDOMContentLoaded(() => { const $ = getjQuery(); if ($) { const JQUERY_NO_CONFLICT = $.fn[NAME]; $.fn[NAME] = Alert.jQueryInterface; $.fn[NAME].Constructor = Alert; $.fn[NAME].noConflict = () => { $.fn[NAME] = JQUERY_NO_CONFLICT; return Alert.jQueryInterface; }; } }); export default Alert;
Close