diff options
Diffstat (limited to 'js/document/text-document.js')
-rwxr-xr-x | js/document/text-document.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/document/text-document.js b/js/document/text-document.js index 88464d87..2574b67c 100755 --- a/js/document/text-document.js +++ b/js/document/text-document.js | |||
@@ -163,7 +163,9 @@ var TextDocument = exports.TextDocument = Montage.create(Component, { | |||
163 | 163 | ||
164 | needsSave: { | 164 | needsSave: { |
165 | get: function() { return this._needsSave; }, | 165 | get: function() { return this._needsSave; }, |
166 | set: function(value) { this._needsSave = value } | 166 | set: function(value) { |
167 | this._needsSave = value; | ||
168 | } | ||
167 | }, | 169 | }, |
168 | 170 | ||
169 | callback: { | 171 | callback: { |