Translated using Weblate (Slovenian)
[phpmyadmin.git] / js / transformations / xml_editor.js
blob35d8b59cab9d74f2cd83b7be46143791bcd273f3
1 /**
2  * XML editor plugin
3  *
4  * @package PhpMyAdmin
5  */
6 AJAX.registerOnload('transformations/xml_editor.js', function () {
7     $('textarea.transform_xml_editor').each(function () {
8         CodeMirror.fromTextArea(this, {
9             lineNumbers: true,
10             indentUnit: 4,
11             mode: 'application/xml',
12             lineWrapping: true
13         });
14     });
15 });