Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
syrihapj /
public_html /
node_modules /
crossvent /
[ HOME SHELL ]
Name
Size
Permission
Action
dist
[ DIR ]
dr-xr-xr-x
src
[ DIR ]
dr-xr-xr-x
.editorconfig
220
B
-rw-r--r--
.jshintignore
18
B
-rw-r--r--
.jshintrc
364
B
-rw-r--r--
.npmignore
14
B
-rw-r--r--
CHANGELOG.md
877
B
-rw-r--r--
LICENSE
1.08
KB
-rw-r--r--
README.md
1.28
KB
-rw-r--r--
bower.json
556
B
-rw-r--r--
gulpfile.js
2.28
KB
-rw-r--r--
package.json
924
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# crossvent > Cross-platform browser event handling The event handler API used by [dominus][1]. # Install Using Bower ```shell bower install -S crossvent ``` Using `npm` ```shell npm install -S crossvent ``` # API The API exposes a few methods that let you deal with event handling in a consistent manner across browsers. ### `crossvent.add(el, type, fn, capturing?)` Adds an event listener `fn` of type `type` to DOM element `el`. ```js crossvent.add(document.body, 'click', function (e) { console.log('clicked document body'); }); ``` ### `crossvent.remove(el, type, fn, capturing?)` Removes an event listener `fn` of type `type` from DOM element `el`. ```js crossvent.add(document.body, 'click', clicked); crossvent.remove(document.body, 'click', clicked); function clicked (e) { console.log('clicked document body'); } ``` ### `crossvent.fabricate(el, type, model?)` Creates a synthetic custom event of type `type` and dispatches it on `el`. You can provide a custom `model` which will be accessible as `e.detail`. ```js crossvent.add(document.body, 'sugar', sugary); crossvent.fabricate(document.body, 'sugar', { onTop: true }); function sugary (e) { console.log('synthetic sugar' + e.detail.onTop ? ' on top' : ''); } ``` # License MIT [1]: https://github.com/bevacqua/dominus
Close