/usr/share/phpmyadmin/js/dist/transformations
NameSizeModeActions
image_upload.js7460644editdlrm
json.js5930644editdlrm
json_editor.js4070644editdlrm
sql_editor.js2820644editdlrm
xml.js5880644editdlrm
xml_editor.js3480644editdlrm
Edit: /usr/share/phpmyadmin/js/dist/transformations/json.js (593B)
"use strict"; /** * JSON syntax highlighting transformation plugin */ 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 = $('
'); $json.append($highlight); CodeMirror.runMode($json.text(), 'application/json', $highlight[0]); $pre.hide(); } }); });