Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
srv
/
admin
/
htdocs
/
phpmyadmin-4.4
/
js
/
transformations
/
//proc/self/root/srv/admin/htdocs/phpmyadmin-4.4/js/transformations/xml_editor.js
/* vim: set expandtab sw=4 ts=4 sts=4: */ /** * XML editor plugin * * @package PhpMyAdmin */ AJAX.registerOnload('transformations/xml_editor.js', function() { $.each($('textarea.transform_xml_editor'), function (i, e) { CodeMirror.fromTextArea(e, { lineNumbers: true, indentUnit: 4, mode: "application/xml", lineWrapping: true }); }); });