aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-16 14:13:28 -0700
committerValerio Virgillito2012-05-16 14:13:28 -0700
commit99f16ae08fbb0a6dfe6008c9833f2253b18c19e5 (patch)
tree5e55a44e8499d787c0bfbe09bf4e63d68a06cecf
parentdadb08aaa017db477f2bfa95727c73e44e482348 (diff)
downloadninja-99f16ae08fbb0a6dfe6008c9833f2253b18c19e5.tar.gz
removing first draw on the component event
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
-rwxr-xr-xjs/controllers/document-controller.js13
-rwxr-xr-xjs/panels/components-panel.reel/components-panel.js8
2 files changed, 1 insertions, 20 deletions
diff --git a/js/controllers/document-controller.js b/js/controllers/document-controller.js
index fba9fad5..1e894f02 100755
--- a/js/controllers/document-controller.js
+++ b/js/controllers/document-controller.js
@@ -76,24 +76,13 @@ var DocumentController = exports.DocumentController = Montage.create(Component,
76 76
77 this.eventManager.addEventListener("styleSheetDirty", this, false); 77 this.eventManager.addEventListener("styleSheetDirty", this, false);
78 78
79 this.eventManager.addEventListener("addComponentFirstDraw", this, false);
80
81 // Temporary add listeners for the new stage templates 79 // Temporary add listeners for the new stage templates
82 this.eventManager.addEventListener("executeWebpageOpen", this, false); 80 this.eventManager.addEventListener("executeWebpageOpen", this, false);
83 this.eventManager.addEventListener("executeNewWebpage", this, false); 81 this.eventManager.addEventListener("executeNewWebpage", this, false);
84 } 82 }
85 }, 83 },
86 84
87 handleAddComponentFirstDraw: { 85
88 value: function (e) {
89 //TODO: Add logic to reparse the document for dynamically added styles
90 //console.log(e);
91 }
92 },
93
94
95
96
97 //TODO: Ensure these APIs are not needed 86 //TODO: Ensure these APIs are not needed
98 //////////////////////////////////////////////////////////////////// 87 ////////////////////////////////////////////////////////////////////
99 // 88 //
diff --git a/js/panels/components-panel.reel/components-panel.js b/js/panels/components-panel.reel/components-panel.js
index 53049cad..37fd9b44 100755
--- a/js/panels/components-panel.reel/components-panel.js
+++ b/js/panels/components-panel.reel/components-panel.js
@@ -295,8 +295,6 @@ exports.ComponentsPanel = Montage.create(Component, {
295 } 295 }
296 } 296 }
297 297
298 instance.addEventListener('firstDraw', that, false);
299
300 that.application.ninja.currentDocument.model.setComponentInstance(instance, element); 298 that.application.ninja.currentDocument.model.setComponentInstance(instance, element);
301 299
302 that.application.ninja.elementMediator.addElements(element, styles); 300 that.application.ninja.elementMediator.addElements(element, styles);
@@ -304,12 +302,6 @@ exports.ComponentsPanel = Montage.create(Component, {
304 302
305 } 303 }
306 }, 304 },
307
308 handleFirstDraw: {
309 value: function (e) {
310 NJevent("addComponentFirstDraw");
311 }
312 },
313 305
314 makeComponent: { 306 makeComponent: {
315 value: function(name) { 307 value: function(name) {