Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xml_editor.js « transformations « src « js - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8e053fc3566e883dd127da1350d4301242b7850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * XML editor plugin
 *
 * @package PhpMyAdmin
 */
window.AJAX.registerOnload('transformations/xml_editor.js', function () {
    $('textarea.transform_xml_editor').each(function () {
        window.CodeMirror.fromTextArea(this, {
            lineNumbers: true,
            indentUnit: 4,
            mode: 'application/xml',
            lineWrapping: true
        });
    });
});