Files
arif_grafin/pma/js/dist/transformations/xml_editor.js
dev@siliconpin.com a3067c5ad4 first commit
2025-08-07 11:53:41 +05:30

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