sql_editor.js 282 B

123456789101112
  1. "use strict";
  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. Functions.getSqlEditor($(this), {}, 'both');
  10. });
  11. });