diff --git a/lib/ace/anchor.js b/lib/ace/anchor.js index f0a02183..0f37af4a 100644 --- a/lib/ace/anchor.js +++ b/lib/ace/anchor.js @@ -134,7 +134,11 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; this.setPosition = function(row, column) { - pos = this.$clipPositionToDocument(row, column); + //pos = this.$clipPositionToDocument(row, column); + pos = { + row: row, + column: column + }; if (this.row == pos.row && this.column == pos.column) return;