blob: 7d2533d1cfd7f0fe2b841c98ddab5519d64d45d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* 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
});
});
});
|