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

json.js « transformations « src « js - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ced6251f740e0ef37233c726e82e7d8da382eb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import $ from 'jquery';

/**
 * JSON syntax highlighting transformation plugin
 */
window.AJAX.registerOnload('transformations/json.js', function () {
    var $elm = $('#page_content').find('code.json');
    $elm.each(function () {
        var $json = $(this);
        var $pre = $json.find('pre');
        /* We only care about visible elements to avoid double processing */
        if ($pre.is(':visible')) {
            var $highlight = $('<div class="json-highlight cm-s-default"></div>');
            $json.append($highlight);
            window.CodeMirror.runMode($json.text(), 'application/json', $highlight[0]);
            $pre.hide();
        }
    });
});