aboutsummaryrefslogtreecommitdiff
path: root/js/stage/stage-deps.js
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-03-06 14:09:44 -0800
committerNivesh Rajbhandari2012-03-06 14:09:44 -0800
commit792793cd3991032b4840ade67f98ae8eae2d30a0 (patch)
tree69d3df003d2bb58fa1ab562fbd1058ff91851f01 /js/stage/stage-deps.js
parent2346d8ab9db06573d8672c64988c46b6c672e015 (diff)
parent1cd89d4d06e3a8f2c221628b19cf26a2c69f5d3f (diff)
downloadninja-792793cd3991032b4840ade67f98ae8eae2d30a0.tar.gz
Merge branch 'refs/heads/ninja-internal' into WebGLFixes
Diffstat (limited to 'js/stage/stage-deps.js')
-rwxr-xr-xjs/stage/stage-deps.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/stage/stage-deps.js b/js/stage/stage-deps.js
index 16f2c652..a71b77be 100755
--- a/js/stage/stage-deps.js
+++ b/js/stage/stage-deps.js
@@ -125,7 +125,7 @@ exports.StageDeps = Montage.create(Component, {
125 handleOpenDocument: { 125 handleOpenDocument: {
126 value: function() { 126 value: function() {
127 127
128 workingPlane = Vector.create( [0,0,1,0] ); 128 workingPlane = [0,0,1,0];
129 129
130 snapManager.setCurrentStage(this.currentStage); 130 snapManager.setCurrentStage(this.currentStage);
131 131
@@ -151,7 +151,7 @@ exports.StageDeps = Montage.create(Component, {
151 reinitializeForSwitchDocument: { 151 reinitializeForSwitchDocument: {
152 value: function() { 152 value: function() {
153 153
154 workingPlane = Vector.create( [0,0,1,0] ); 154 workingPlane = [0,0,1,0];
155 155
156 snapManager.setCurrentStage(this.currentStage); 156 snapManager.setCurrentStage(this.currentStage);
157 157