File "json_editor.js"

Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/phpMyAdmin/js/src/transformations/json_editor.js
File size: 435 B
MIME-type:
Charset: utf-8

Download   Open   Back

/**
 * JSON syntax highlighting transformation plugin
 *
 * @package PhpMyAdmin
 */
AJAX.registerOnload('transformations/json_editor.js', function () {
    $('textarea.transform_json_editor').each(function () {
        CodeMirror.fromTextArea(this, {
            lineNumbers: true,
            matchBrackets: true,
            indentUnit: 4,
            mode: 'application/json',
            lineWrapping: true
        });
    });
});

PHP File Manager