aboutsummaryrefslogtreecommitdiff
path: root/js/ninja.reel/ninja.js
diff options
context:
space:
mode:
authorEric Guzman2012-03-12 15:33:04 -0700
committerEric Guzman2012-03-12 15:33:04 -0700
commit7e3161153b87b891875ac65368a19aed12909fa3 (patch)
treeb80f48d711a9729fc39dbbdff28c4f0620e7302d /js/ninja.reel/ninja.js
parent7a28932ba8a7517bbaaabe1f5edf678416aafc9c (diff)
parent69d90467865a1384725b2301901be2180c5a841f (diff)
downloadninja-7e3161153b87b891875ac65368a19aed12909fa3.tar.gz
Merge branch 'refs/heads/master' into CSSPanelUpdates
Conflicts: js/panels/PanelContainer/PanelContainer.reel/PanelContainer.js
Diffstat (limited to 'js/ninja.reel/ninja.js')
-rwxr-xr-xjs/ninja.reel/ninja.js30
1 files changed, 3 insertions, 27 deletions
diff --git a/js/ninja.reel/ninja.js b/js/ninja.reel/ninja.js
index 6efeef8a..88361fd9 100755
--- a/js/ninja.reel/ninja.js
+++ b/js/ninja.reel/ninja.js
@@ -8,10 +8,9 @@ var Montage = require("montage/core/core").Montage,
8 Component = require("montage/ui/component").Component, 8 Component = require("montage/ui/component").Component,
9 AppData = require("js/data/appdata").AppData; 9 AppData = require("js/data/appdata").AppData;
10 10
11exports.Ninja = Montage.create(Component, { 11var matrix = require("js/lib/math/matrix");
12 12
13 _appLoaded: { value: false }, 13exports.Ninja = Montage.create(Component, {
14 _preload: { value: false },
15 14
16 ninjaVersion: { 15 ninjaVersion: {
17 value: null 16 value: null
@@ -54,7 +53,7 @@ exports.Ninja = Montage.create(Component, {
54 53
55 window.addEventListener("resize", this, false); 54 window.addEventListener("resize", this, false);
56 55
57 this.eventManager.addEventListener( "appLoading", this, false); 56// this.eventManager.addEventListener( "appLoading", this, false); // Don't need this anymore
58 this.eventManager.addEventListener( "selectTool", this, false); 57 this.eventManager.addEventListener( "selectTool", this, false);
59 this.eventManager.addEventListener( "selectSubTool", this, false); 58 this.eventManager.addEventListener( "selectSubTool", this, false);
60 this.eventManager.addEventListener( "onOpenDocument", this, false); 59 this.eventManager.addEventListener( "onOpenDocument", this, false);
@@ -79,29 +78,6 @@ exports.Ninja = Montage.create(Component, {
79 } 78 }
80 }, 79 },
81 80
82 handlePreloadFinish: {
83 value: function(e) {
84 this._preload = true;
85 this.appLoaded();
86 }
87 },
88
89 handleAppLoading: {
90 value: function(e) {
91 this._appLoaded = true;
92 this.appLoaded();
93 }
94 },
95
96 appLoaded: {
97 value: function() {
98 if(this._appLoaded && this._preload) {
99 // App is now deserialized and files are preloaded
100 this.appModel.materials = MaterialsLibrary.materials;
101 }
102 }
103 },
104
105 _didDraw: { 81 _didDraw: {
106 value: false 82 value: false
107 }, 83 },