phpmyadmin/js/transformations/sql_editor.js
Maurício Meneghini Fauth 00e1ca9b66 Automatic fixes by ESLint
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-09-25 14:22:35 -03:00

12 lines
312 B
JavaScript

/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* SQL syntax highlighting transformation plugin js
*
* @package PhpMyAdmin
*/
AJAX.registerOnload('transformations/sql_editor.js', function () {
$('textarea.transform_sql_editor').each(function () {
PMA_getSQLEditor($(this), {}, 'both');
});
});