diff options
author | Ananya Sen | 2012-02-17 12:54:07 -0800 |
---|---|---|
committer | Ananya Sen | 2012-02-17 12:54:07 -0800 |
commit | 96178309ddcdb54c0c451b69ea6fb8cdf76fcf62 (patch) | |
tree | 44fbaa798250596e123616d330bcf2fb953cf71d /js/document | |
parent | a7e3ef9f80d5e29515c9f8dd5374c89b9d2496de (diff) | |
download | ninja-96178309ddcdb54c0c451b69ea6fb8cdf76fcf62.tar.gz |
renamed methods to use better words
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/document')
-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 | } |