Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
public /
myadmin /
js /
transformations /
Delete
Unzip
Name
Size
Permission
Date
Action
image_upload.js
829
B
-rw-r--r--
2021-02-05 18:25
json.js
670
B
-rw-r--r--
2021-02-05 18:25
json_editor.js
477
B
-rw-r--r--
2021-02-05 18:25
sql_editor.js
318
B
-rw-r--r--
2021-02-05 18:25
xml.js
665
B
-rw-r--r--
2021-02-05 18:25
xml_editor.js
412
B
-rw-r--r--
2021-02-05 18:25
Save
Rename
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Image upload transformations plugin js * * @package PhpMyAdmin */ AJAX.registerOnload('transformations/image_upload.js', function () { // Change thumbnail when image file is selected // through file upload dialog $('input.image-upload').on('change', function () { if (this.files && this.files[0]) { var reader = new FileReader(); var $input = $(this); reader.onload = function (e) { $input.prevAll('img').attr('src', e.target.result); }; reader.readAsDataURL(this.files[0]); } }); }); /** * Unbind all event handlers before tearing down a page */ AJAX.registerTeardown('transformations/image_upload.js', function () { $('input.image-upload').off('change'); });