diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/lib/blocks.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/lib/blocks.js b/js/lib/blocks.js index 279fa54..8aeb95c 100644 --- a/js/lib/blocks.js +++ b/js/lib/blocks.js @@ -489,7 +489,6 @@ var incorporateLine = function(ln) { this.tip._strings.length > 0) { // lazy paragraph continuation - this._lastLineBlank = false; this.addLine(ln, offset); } else { // not a lazy continuation @@ -538,7 +537,7 @@ var incorporateLine = function(ln) { break; } else { // create paragraph container for line - container = this.addChild('Paragraph', this.lineNumber, offset); + this.addChild('Paragraph', offset); this.addLine(ln, offset); } } |