/usr/share/phpmyadmin/js/dist/transformations
NameSizeModeActions
image_upload.js7460644editdlrm
json.js5930644editdlrm
json_editor.js4070644editdlrm
sql_editor.js2820644editdlrm
xml.js5880644editdlrm
xml_editor.js3480644editdlrm
Edit: /usr/share/phpmyadmin/js/dist/transformations/xml_editor.js (348B)
"use strict"; /** * XML editor plugin * * @package PhpMyAdmin */ AJAX.registerOnload('transformations/xml_editor.js', function () { $('textarea.transform_xml_editor').each(function () { CodeMirror.fromTextArea(this, { lineNumbers: true, indentUnit: 4, mode: 'application/xml', lineWrapping: true }); }); });