aboutsummaryrefslogtreecommitdiff
path: root/js/io/ui/new-file-dialog/new-file-workflow-controller.js
diff options
context:
space:
mode:
authorEric Guzman2012-04-02 15:36:08 -0700
committerEric Guzman2012-04-02 15:36:08 -0700
commit0241bf331b7e06e206a54be441edf2f4c7261f63 (patch)
treeb7e2f9cad73eed4fc616cf1841cd0be02bd955d4 /js/io/ui/new-file-dialog/new-file-workflow-controller.js
parentdde5b5054f93db493e5d4d502e677f5781334b08 (diff)
parentc6de22bf42be90b403491b5f87b1818d9020310c (diff)
downloadninja-0241bf331b7e06e206a54be441edf2f4c7261f63.tar.gz
Merge branch 'refs/heads/master' into CSSPanelUpdates
Diffstat (limited to 'js/io/ui/new-file-dialog/new-file-workflow-controller.js')
-rwxr-xr-xjs/io/ui/new-file-dialog/new-file-workflow-controller.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/js/io/ui/new-file-dialog/new-file-workflow-controller.js b/js/io/ui/new-file-dialog/new-file-workflow-controller.js
index d065ca35..279a74b4 100755
--- a/js/io/ui/new-file-dialog/new-file-workflow-controller.js
+++ b/js/io/ui/new-file-dialog/new-file-workflow-controller.js
@@ -27,6 +27,16 @@ var NewFileWorkflowController = exports.NewFileWorkflowController = Montage.cre
27 value: null 27 value: null
28 }, 28 },
29 29
30 newFileOptionsNav:{
31 enumerable:true,
32 value: null
33 },
34
35 saveAsDialog:{
36 enumerable:true,
37 value: null
38 },
39
30 showNewFileDialog:{ 40 showNewFileDialog:{
31 writable:false, 41 writable:false,
32 enumerable:true, 42 enumerable:true,
@@ -49,7 +59,7 @@ var NewFileWorkflowController = exports.NewFileWorkflowController = Montage.cre
49 this.model.defaultProjectType = lastSelectedProjectType; 59 this.model.defaultProjectType = lastSelectedProjectType;
50 } 60 }
51 61
52 var newFileOptionsNav = newFileOptionsNavigatorModule.NewFileOptionsNavigator.create(); 62 var newFileOptionsNav = this.newFileOptionsNav = newFileOptionsNavigatorModule.NewFileOptionsNavigator.create();
53 newFileOptionsNav.newFileModel = this.model; 63 newFileOptionsNav.newFileModel = this.model;
54 64
55 var popup = Popup.create(); 65 var popup = Popup.create();
@@ -70,7 +80,7 @@ var NewFileWorkflowController = exports.NewFileWorkflowController = Montage.cre
70 var fileName = data.fileName || "filename.txt"; 80 var fileName = data.fileName || "filename.txt";
71 var folderUri = data.folderUri || "/Documents"; 81 var folderUri = data.folderUri || "/Documents";
72 82
73 var saveAsDialog = saveAsModule.SaveAsDialog.create(); 83 var saveAsDialog = this.saveAsDialog = saveAsModule.SaveAsDialog.create();
74 saveAsDialog.fileName = fileName; 84 saveAsDialog.fileName = fileName;
75 saveAsDialog.folderUri = folderUri; 85 saveAsDialog.folderUri = folderUri;
76 saveAsDialog.callback = data.callback; 86 saveAsDialog.callback = data.callback;