Enable line wrapping for SQL editor

This commit is contained in:
Michal Čihař 2012-01-27 11:04:11 +01:00
parent bda9be54eb
commit 952a181f1f

View File

@ -3434,7 +3434,7 @@ $(document).ready(function() {
$(document).ready(function() {
var elm = $('#sqlquery');
if (elm.length > 0 && typeof CodeMirror != 'undefined') {
codemirror_editor = CodeMirror.fromTextArea(elm[0], {lineNumbers: true, matchBrackets: true, indentUnit: 4, mode: "text/x-mysql"});
codemirror_editor = CodeMirror.fromTextArea(elm[0], {lineNumbers: true, matchBrackets: true, indentUnit: 4, mode: "text/x-mysql", lineWrapping: true});
}
});