From 5d00fdf3da118fbbffc78b4eeda5e9cd48bf2bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 27 Jan 2012 11:04:39 +0100 Subject: [PATCH] Wrap long lines --- js/functions.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index 2a1fe23958..12c6a653c7 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3434,7 +3434,13 @@ $(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", lineWrapping: true}); + codemirror_editor = CodeMirror.fromTextArea(elm[0], { + lineNumbers: true, + matchBrackets: true, + indentUnit: 4, + mode: "text/x-mysql", + lineWrapping: true + }); } });