Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sql_editor.js « transformations « src « js - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6396054748646cbeeccfc5c1e666033bda1f9b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import $ from 'jquery';

/**
 * SQL syntax highlighting transformation plugin js
 *
 * @package PhpMyAdmin
 */
window.AJAX.registerOnload('transformations/sql_editor.js', function () {
    $('textarea.transform_sql_editor').each(function () {
        Functions.getSqlEditor($(this), {}, 'both');
    });
});