json_editor.js 392 B

12345678910111213141516
  1. /**
  2. * JSON syntax highlighting transformation plugin
  3. *
  4. * @package PhpMyAdmin
  5. */
  6. AJAX.registerOnload('transformations/json_editor.js', function () {
  7. $('textarea.transform_json_editor').each(function () {
  8. CodeMirror.fromTextArea(this, {
  9. lineNumbers: true,
  10. matchBrackets: true,
  11. indentUnit: 4,
  12. mode: 'application/json',
  13. lineWrapping: true
  14. });
  15. });
  16. });