From 7f043049b998d3432f6bd8c41d0973e4bb5ebe28 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Fri, 3 Jun 2011 09:56:01 +0000 Subject: [PATCH] (bug 29104) Fix r86622: make splitlines default to false, makes much more sense --- resources/jquery/jquery.textSelection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/jquery/jquery.textSelection.js b/resources/jquery/jquery.textSelection.js index 131980bc0f..1af2b72407 100644 --- a/resources/jquery/jquery.textSelection.js +++ b/resources/jquery/jquery.textSelection.js @@ -414,7 +414,7 @@ scrollToCaretPosition: function( options ) { 'ownline': false, // Put the inserted text on a line of its own 'replace': false, // If there is a selection, replace it with peri instead of leaving it alone 'selectPeri': true, // Select the peri text if it was inserted (but not if there was a selection and replace==false) - 'splitlines': true // If multiple lines are selected, encapsulate each line individually + 'splitlines': false // If multiple lines are selected, encapsulate each line individually }, options ); break; case 'getCaretPosition': -- 2.20.1