diff options
author | Ananya Sen | 2012-02-16 17:32:57 -0800 |
---|---|---|
committer | Ananya Sen | 2012-02-16 17:32:57 -0800 |
commit | 4641dbefb6e8cb41f1f3d7f4d070d50bcaed94be (patch) | |
tree | 6bddeaa15e7d7b2100f501fa3f3396cdf88d18d2 /js/io/ui/save-as-dialog.reel/save-as-dialog.js | |
parent | a9c369c2e5d8f6fc8d936f7e1e6b84f693226ddf (diff) | |
download | ninja-4641dbefb6e8cb41f1f3d7f4d070d50bcaed94be.tar.gz |
remove similar function from coreioapi.js
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/io/ui/save-as-dialog.reel/save-as-dialog.js')
-rw-r--r-- | js/io/ui/save-as-dialog.reel/save-as-dialog.js | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/js/io/ui/save-as-dialog.reel/save-as-dialog.js b/js/io/ui/save-as-dialog.reel/save-as-dialog.js index 786ef5c9..55a09fa8 100644 --- a/js/io/ui/save-as-dialog.reel/save-as-dialog.js +++ b/js/io/ui/save-as-dialog.reel/save-as-dialog.js | |||
@@ -175,8 +175,25 @@ var SaveAsDialog = exports.SaveAsDialog = Montage.create(Component, { | |||
175 | } | 175 | } |
176 | }, | 176 | }, |
177 | checkFileExists:{ | 177 | checkFileExists:{ |
178 | value: function(fileUri, folderUri, fileType){ | 178 | value: function(fileName, folderUri, fileType){ |
179 | var status= this.application.ninja.coreIoApi.checkFileExists(fileUri, folderUri, fileType); | 179 | var uri = "", response=null, status=true; |
180 | //prepare absolute uri | ||
181 | if(/[^/\\]$/g.test(folderUri)){ | ||
182 | folderUri = folderUri + "/"; | ||
183 | } | ||
184 | if(!!fileType && (fileName.lastIndexOf(fileType) !== (fileName.length - fileType.length))){ | ||
185 | fileName = fileName+fileType; | ||
186 | } | ||
187 | uri = ""+folderUri+fileName; | ||
188 | response= this.application.ninja.coreIoApi.fileExists({"uri":uri}); | ||
189 | if(!!response && response.success && (response.status === 204)){ | ||
190 | status = true; | ||
191 | }else if(!!response && response.success && (response.status === 404)){ | ||
192 | status = false; | ||
193 | }else{ | ||
194 | status = false; | ||
195 | } | ||
196 | |||
180 | if(status){ | 197 | if(status){ |
181 | this.showError("! File already exists."); | 198 | this.showError("! File already exists."); |
182 | } | 199 | } |