/usr/share/phpmyadmin/js/src/transformations
NameSizeModeActions
image_upload.js7870644editdlrm
json.js6280644editdlrm
json_editor.js4350644editdlrm
sql_editor.js2760644editdlrm
xml.js6230644editdlrm
xml_editor.js3700644editdlrm
Edit: /usr/share/phpmyadmin/js/src/transformations/xml_editor.js (370B)
/** * 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 }); }); });