aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/application.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-17 22:31:44 -0700
committerValerio Virgillito2012-06-17 22:31:44 -0700
commit8fe92b94ce5e1e2857d088752d94e19db7e3d8a8 (patch)
treed84807aae0b974b5200050972dd94da6066e363b /node_modules/montage/ui/application.js
parente570fc8518cf03dd03c15982edcf17c5ba0a293d (diff)
downloadninja-8fe92b94ce5e1e2857d088752d94e19db7e3d8a8.tar.gz
montage v11 merge into ninja
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/application.js')
-rwxr-xr-xnode_modules/montage/ui/application.js33
1 files changed, 16 insertions, 17 deletions
diff --git a/node_modules/montage/ui/application.js b/node_modules/montage/ui/application.js
index bbce6835..025ef950 100755
--- a/node_modules/montage/ui/application.js
+++ b/node_modules/montage/ui/application.js
@@ -137,28 +137,27 @@ var Application = exports.Application = Montage.create(Montage, /** @lends monta
137 value: null 137 value: null
138 }, 138 },
139 139
140 /** 140 _load: {
141 Description TODO 141 value: function(applicationRequire, callback) {
142 @function 142 var template = Template.create().initWithDocument(window.document, applicationRequire),
143 @param {Function} callback A function to invoke after the method has completed. 143 rootComponent,
144 */
145 load: {
146 value: function(callback) {
147 var template = Template.create().initWithDocument(window.document),
148 component,
149 self = this; 144 self = this;
150 145
151 self = Application.isPrototypeOf(self) ? self : Application.create();
152
153 // assign to the exports so that it is available in the deserialization of the template 146 // assign to the exports so that it is available in the deserialization of the template
154 exports.application = self; 147 exports.application = self;
155 148
156 template.instantiateWithOwnerAndDocument(null, window.document, function() { 149 require.async("ui/component").then(function(exports) {
157 require("ui/component").__root__.needsDraw = true; 150 rootComponent = exports.__root__;
158 if (callback) { 151 rootComponent.element = document;
159 callback(self); 152 template.instantiateWithOwnerAndDocument(null, window.document, function() {
160 } 153 self.callDelegateMethod("willFinishLoading", self);
161 }); 154 rootComponent.needsDraw = true;
155 if (callback) {
156 callback(self);
157 }
158
159 });
160 }).end();
162 } 161 }
163 }, 162 },
164 163