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

xml_editor.js « transformations « js - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4492b9e730587a95638614b219e9c1f332437a78 (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
        });
    });
});