Files
GseTDDUebungKCLR/database/phpMyAdmin/js/dist/transformations/xml_editor.js
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01: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
});
});
});