sql_editor.js 312 B

1234567891011
  1. /* vim: set expandtab sw=4 ts=4 sts=4: */
  2. /**
  3. * SQL syntax highlighting transformation plugin js
  4. *
  5. * @package PhpMyAdmin
  6. */
  7. AJAX.registerOnload('transformations/sql_editor.js', function () {
  8. $('textarea.transform_sql_editor').each(function () {
  9. PMA_getSQLEditor($(this), {}, 'both');
  10. });
  11. });