Translated using Weblate (Korean)
[phpmyadmin.git] / js / transformations / sql_editor.js
blob83e560e88d3c644b64eccb8fd24672c333e47505
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() {
9     $('textarea.transform_sql_editor').each(function () {
10         PMA_getSQLEditor($(this), {}, 'both');
11     });
12 });