diff options
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 | 5 |
1 files changed, 2 insertions, 3 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 f514b81a..848e0cb8 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 | |||
@@ -226,7 +226,7 @@ var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(C | |||
226 | 226 | ||
227 | if(!!this.selectedProjectType && !!this.selectedTemplate | 227 | if(!!this.selectedProjectType && !!this.selectedTemplate |
228 | && this.isValidFileName(projectName) && this.isValidUri(projectDirectory) | 228 | && this.isValidFileName(projectName) && this.isValidUri(projectDirectory) |
229 | && !this.checkFileExists(projectName, projectDirectory, this.selectedProjectType) | 229 | && !this.checkFileExists(projectName, projectDirectory, fileExtension) |
230 | ){ | 230 | ){ |
231 | this.error.innerHTML=""; | 231 | this.error.innerHTML=""; |
232 | //console.log("$$$ new file selections: \n" + selectionlog); | 232 | //console.log("$$$ new file selections: \n" + selectionlog); |
@@ -258,7 +258,7 @@ var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(C | |||
258 | this.popup.hide(); | 258 | this.popup.hide(); |
259 | } | 259 | } |
260 | }else{ | 260 | }else{ |
261 | if(this.error.innerHTML !== ""){ | 261 | if(this.error.innerHTML === ""){ |
262 | this.showError("! Project Template, Name and Directory should be valid."); | 262 | this.showError("! Project Template, Name and Directory should be valid."); |
263 | } | 263 | } |
264 | //disable ok | 264 | //disable ok |
@@ -328,7 +328,6 @@ var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(C | |||
328 | 328 | ||
329 | if(!!this.selectedProjectType && !!this.selectedTemplate | 329 | if(!!this.selectedProjectType && !!this.selectedTemplate |
330 | && this.isValidFileName(this.newFileName) && this.isValidUri(this.newFileDirectory) | 330 | && this.isValidFileName(this.newFileName) && this.isValidUri(this.newFileDirectory) |
331 | && !this.checkFileExists(this.newFileName, this.newFileDirectory, this.newFileModel.projectTypeData[this.selectedProjectType.uri].fileExtension) | ||
332 | ){ | 331 | ){ |
333 | status = true; | 332 | status = true; |
334 | this.okButton.removeAttribute("disabled"); | 333 | this.okButton.removeAttribute("disabled"); |