diff options
author | Valerio Virgillito | 2012-05-10 15:08:12 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-10 15:08:12 -0700 |
commit | bcc9f5edaf73529c057433bb3ee8219f3c6935b2 (patch) | |
tree | aa5792ea41243f3a451c6bd34c63f0f175f50602 /js/controllers | |
parent | 6b65188b7a4a21ae1e575282fd5b6198b22ca7b7 (diff) | |
parent | 6e3617e56c60894649e3df9c7e4563e99a3f793a (diff) | |
download | ninja-bcc9f5edaf73529c057433bb3ee8219f3c6935b2.tar.gz |
Merge branch 'dom-architecture' of github.com:Motorola-Mobility/ninja-internal into dom-architecture
Diffstat (limited to 'js/controllers')
-rwxr-xr-x | js/controllers/document-controller.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/js/controllers/document-controller.js b/js/controllers/document-controller.js index 682bd6a6..58fa4de7 100755 --- a/js/controllers/document-controller.js +++ b/js/controllers/document-controller.js | |||
@@ -211,9 +211,14 @@ var DocumentController = exports.DocumentController = Montage.create(Component, | |||
211 | //////////////////////////////////////////////////////////////////// | 211 | //////////////////////////////////////////////////////////////////// |
212 | handleExecuteFileClose:{ | 212 | handleExecuteFileClose:{ |
213 | value: function(event) { | 213 | value: function(event) { |
214 | if(this.activeDocument && this.application.ninja.coreIoApi.cloudAvailable()){ | 214 | if (this.activeDocument) { |
215 | this.activeDocument.closeDocument(); | ||
216 | } | ||
217 | /* | ||
218 | if(this.activeDocument && this.application.ninja.coreIoApi.cloudAvailable()){ | ||
215 | this.closeDocument(this.activeDocument.uuid); | 219 | this.closeDocument(this.activeDocument.uuid); |
216 | } | 220 | } |
221 | */ | ||
217 | } | 222 | } |
218 | }, | 223 | }, |
219 | //////////////////////////////////////////////////////////////////// | 224 | //////////////////////////////////////////////////////////////////// |