Files
citrus-cms/mysql/js/dist/transformations/xml_editor.js
T
2026-04-28 21:15:09 +03:00

15 lines
333 B
JavaScript

/**
* 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
});
});
});