From 64f2fc4015cd8ebdccfb97bb1f1e0af3ff2d312e Mon Sep 17 00:00:00 2001 From: nightwing Date: Tue, 11 Nov 2014 11:45:20 +0400 Subject: [PATCH] add newLineCharacter argument to getValue --- lib/ace/document.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ace/document.js b/lib/ace/document.js index cd586ce8..e92aa969 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -83,8 +83,8 @@ var Document = function(textOrLines) { /** * Returns all the lines in the document as a single string, joined by the new line character. **/ - this.getValue = function() { - return this.getAllLines().join(this.getNewLineCharacter()); + this.getValue = function(newLineCharacter) { + return this.getAllLines().join(newLineCharacter || this.getNewLineCharacter()); }; /** @@ -213,8 +213,8 @@ var Document = function(textOrLines) { * * @returns {String} **/ - this.getTextRange = function(range) { - return this.getLinesForRange(range).join(this.getNewLineCharacter()); + this.getTextRange = function(range, newLineCharacter) { + return this.getLinesForRange(range).join(newLineCharacter || this.getNewLineCharacter()); }; /**