Index: trunk/parsers/wikidom/lib/es/es.ParagraphBlock.js |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | from.line.text = from.line.text.substring( 0, from.offset ) |
91 | 91 | + to.line.text.substring( to.offset ); |
92 | 92 | // Remove lines after "from" up to and including "to" |
93 | | - this.lines = this.lines.splice( from.index + 1, to.index - from.index ); |
| 93 | + this.lines.splice( from.index + 1, to.index - from.index ); |
94 | 94 | } |
95 | 95 | this.updateText(); |
96 | 96 | this.flow.render(); |