diff options
author | Nivesh Rajbhandari | 2012-02-22 11:04:18 -0800 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-02-22 11:04:18 -0800 |
commit | ecd0dc6ffd21aedfb5ae8f617af36e48a2ba72ce (patch) | |
tree | df63accaeccb899ab1ecc107ab361629a5ca3452 /js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js | |
parent | 96a0a8c916533eb5625816192ed38488f639326d (diff) | |
parent | 2f24dafec79583547fe663d5a387d8ef15aae3bf (diff) | |
download | ninja-ecd0dc6ffd21aedfb5ae8f617af36e48a2ba72ce.tar.gz |
Merge branch 'refs/heads/ninja-internal' into WebGLMaterials
Diffstat (limited to 'js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js')
-rw-r--r-- | js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js index f5ab0027..11b322fe 100644 --- a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js +++ b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js | |||
@@ -386,8 +386,25 @@ var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(C | |||
386 | } | 386 | } |
387 | }, | 387 | }, |
388 | checkFileExists:{ | 388 | checkFileExists:{ |
389 | value: function(fileUri, folderUri, fileType){ | 389 | value: function(fileName, folderUri, fileType){ |
390 | var status= this.application.ninja.coreIoApi.checkFileExists(fileUri, folderUri, fileType); | 390 | var uri = "", response=null, status=true; |
391 | //prepare absolute uri | ||
392 | if(/[^/\\]$/g.test(folderUri)){ | ||
393 | folderUri = folderUri + "/"; | ||
394 | } | ||
395 | if(!!fileType && (fileName.lastIndexOf(fileType) !== (fileName.length - fileType.length))){ | ||
396 | fileName = fileName+fileType; | ||
397 | } | ||
398 | uri = ""+folderUri+fileName; | ||
399 | response= this.application.ninja.coreIoApi.fileExists({"uri":uri}); | ||
400 | if(!!response && response.success && (response.status === 204)){ | ||
401 | status = true; | ||
402 | }else if(!!response && response.success && (response.status === 404)){ | ||
403 | status = false; | ||
404 | }else{ | ||
405 | status = false; | ||
406 | } | ||
407 | |||
391 | if(status){ | 408 | if(status){ |
392 | this.showError("! File already exists."); | 409 | this.showError("! File already exists."); |
393 | } | 410 | } |