http://www.mediawiki.org/wiki/Special:Code/MediaWiki/90566
Revision: 90566
Author: tparscal
Date: 2011-06-22 00:44:39 +0000 (Wed, 22 Jun 2011)
Log Message:
-----------
Fixed off-by-1 error, causing words to disappear sometimes.
Modified Paths:
--------------
trunk/parsers/wikidom/lib/es/es.TextFlow.js
Modified: trunk/parsers/wikidom/lib/es/es.TextFlow.js
===================================================================
--- trunk/parsers/wikidom/lib/es/es.TextFlow.js 2011-06-22 00:37:34 UTC (rev
90565)
+++ trunk/parsers/wikidom/lib/es/es.TextFlow.js 2011-06-22 00:44:39 UTC (rev
90566)
@@ -30,7 +30,7 @@
// Build list of line break offsets
var words = [0],
- boundary = /[ \-\t\r\n\f]/,
+ boundary = /[ \.\,\;\:\-\t\r\n\f]/,
left = 0,
right = 0,
search = 0;
@@ -46,7 +46,7 @@
var pos = 0,
index = 0,
metrics = [];
- while ( pos < words.length - 1 ) {
+ while ( pos < words.length ) {
// Create line
var $line = $( '<div class="editSurface-line"></div>' )
.attr( 'line-index', index )
@@ -81,7 +81,7 @@
// Step forward
index++;
- pos = m;
+ pos = l;
}
//console.timeEnd( 'TextFlow.render' );
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs