diff options
Diffstat (limited to 'js/document/text-document.js')
-rwxr-xr-x | js/document/text-document.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/document/text-document.js b/js/document/text-document.js index f74742ad..5c731bcf 100755 --- a/js/document/text-document.js +++ b/js/document/text-document.js | |||
@@ -26,7 +26,7 @@ var TextDocument = exports.TextDocument = Montage.create(Montage, { | |||
26 | // PRIVATE MEMBERS | 26 | // PRIVATE MEMBERS |
27 | _codeEditor: { | 27 | _codeEditor: { |
28 | value: { | 28 | value: { |
29 | "editor": { value: null, enumerable: false }, | 29 | "editor": { value: null, enumerable: false } |
30 | 30 | ||
31 | } | 31 | } |
32 | }, | 32 | }, |
@@ -193,13 +193,13 @@ var TextDocument = exports.TextDocument = Montage.create(Montage, { | |||
193 | } | 193 | } |
194 | }, | 194 | }, |
195 | 195 | ||
196 | markDocumentEditted:{ | 196 | markEdited:{ |
197 | value: function() { | 197 | value: function() { |
198 | this.dirtyFlag = true; | 198 | this.dirtyFlag = true; |
199 | } | 199 | } |
200 | }, | 200 | }, |
201 | 201 | ||
202 | markDocumentUneditted:{ | 202 | markUnedited:{ |
203 | value: function() { | 203 | value: function() { |
204 | this.dirtyFlag = false; | 204 | this.dirtyFlag = false; |
205 | } | 205 | } |