Submit
Path:
~
/
/
opt
/
psa
/
phpMyAdmin
/
js
/
src
/
transformations
/
File Content:
image_upload.js
/** * 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'); });
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
image_upload.js
787 bytes
0644
json.js
628 bytes
0644
json_editor.js
435 bytes
0644
sql_editor.js
276 bytes
0644
xml.js
623 bytes
0644
xml_editor.js
370 bytes
0644
N4ST4R_ID | Naxtarrr