blob: 18139f3419ba524f6655c2d8b44c3427abe06cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* 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 () {
Functions.getSqlEditor($(this), {}, 'both');
});
});
|