From 9f2ecbdb049adbc3ac6fa06c0d5d38b2c1f36d02 Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Mon, 19 Apr 2010 18:28:24 +0200 Subject: [PATCH] fix text layer --- src/TextLayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TextLayer.js b/src/TextLayer.js index e0d5cc1d..c9700d38 100644 --- a/src/TextLayer.js +++ b/src/TextLayer.js @@ -64,7 +64,7 @@ ace.TextLayer.prototype.updateLines = function(layerConfig, firstRow, lastRow) { ace.TextLayer.prototype.update = function(config) { var html = []; for ( var i = config.firstRow; i <= config.lastRow; i++) { - html.push("
"); this.renderLine(html, i), html.push("
"); }