phpmyadmin/js/transformations/sql_editor.js
Madhura Jayaratne a3225dc1ed Fix height issue for SQL editor input transformations
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2015-05-27 12:48:10 +05:30

13 lines
300 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));
});
});