aboutsummaryrefslogtreecommitdiff
path: root/js/components/layout/tools-list.reel/tools-list.js
diff options
context:
space:
mode:
authorJonathan Duran2012-03-12 16:58:33 -0700
committerJonathan Duran2012-03-12 16:58:33 -0700
commite4c13b0febab589b881b2c997ce122c4d359c560 (patch)
treead5a69e84714a3f7fa579fb58951f3b06f4cf3f1 /js/components/layout/tools-list.reel/tools-list.js
parenta28cb88194f45325e42dd8c774469424712dd6f4 (diff)
parentc24f58c10231c30d3a8a4c9fb9a4f395dd746180 (diff)
downloadninja-e4c13b0febab589b881b2c997ce122c4d359c560.tar.gz
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Diffstat (limited to 'js/components/layout/tools-list.reel/tools-list.js')
-rwxr-xr-xjs/components/layout/tools-list.reel/tools-list.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/components/layout/tools-list.reel/tools-list.js b/js/components/layout/tools-list.reel/tools-list.js
index e26ab391..5ea6f70f 100755
--- a/js/components/layout/tools-list.reel/tools-list.js
+++ b/js/components/layout/tools-list.reel/tools-list.js
@@ -29,10 +29,27 @@ exports.ToolsList = Montage.create(Component, {
29 RotateStageTool3D: { value: null }, 29 RotateStageTool3D: { value: null },
30 PanTool: { value: null }, 30 PanTool: { value: null },
31 ZoomTool: { value: null }, 31 ZoomTool: { value: null },
32 disabled: { value: true},
33
34 handleOpenDocument: {
35 value: function(){
36 this.disabled = false;
37 }
38 },
39
40 handleCloseDocument: {
41 value: function(){
42 if(!this.application.ninja.documentController.activeDocument) {
43 this.disabled = true;
44 }
45 }
46 },
32 47
33 prepareForDraw: { 48 prepareForDraw: {
34 enumerable: false, 49 enumerable: false,
35 value: function() { 50 value: function() {
51 this.eventManager.addEventListener( "openDocument", this, false);
52 this.eventManager.addEventListener( "closeDocument", this, false);
36 this.PenTool.options = this.application.ninja.toolsProperties.shapeProperties.lineProperties;//this.application.Ninja.toolsProperties.penProperties; 53 this.PenTool.options = this.application.ninja.toolsProperties.shapeProperties.lineProperties;//this.application.Ninja.toolsProperties.penProperties;
37 54
38 this.SelectionTool.options = this.application.ninja.toolsProperties.selectionProperties; 55 this.SelectionTool.options = this.application.ninja.toolsProperties.selectionProperties;