aboutsummaryrefslogtreecommitdiff
path: root/js/components/layout/tools-properties.reel/tools-properties.js
diff options
context:
space:
mode:
authorPushkar Joshi2012-06-13 14:00:31 -0700
committerPushkar Joshi2012-06-13 14:00:31 -0700
commit596765056ca6e5b08395c6d7ea19e7684c2acaf3 (patch)
tree480f42ffc0782ca768284c1208a8f99adb5636a2 /js/components/layout/tools-properties.reel/tools-properties.js
parent75df16b937bb420e7d93a411e73f7b59578b1b7e (diff)
parent682f4917d6badd105998c3dd84d031c38b51f017 (diff)
downloadninja-596765056ca6e5b08395c6d7ea19e7684c2acaf3.tar.gz
Merge branch 'master' into brushtool
Diffstat (limited to 'js/components/layout/tools-properties.reel/tools-properties.js')
-rwxr-xr-xjs/components/layout/tools-properties.reel/tools-properties.js82
1 files changed, 81 insertions, 1 deletions
diff --git a/js/components/layout/tools-properties.reel/tools-properties.js b/js/components/layout/tools-properties.reel/tools-properties.js
index 6ea4ad85..c5a53abc 100755
--- a/js/components/layout/tools-properties.reel/tools-properties.js
+++ b/js/components/layout/tools-properties.reel/tools-properties.js
@@ -9,6 +9,85 @@ var Component = require("montage/ui/component").Component;
9 9
10exports.ToolsProperties = Montage.create(Component, { 10exports.ToolsProperties = Montage.create(Component, {
11 11
12 selectionProperties: {
13 value: null,
14 serializable: true
15 },
16
17 object3DProperties: {
18 value: null,
19 serializable: true
20 },
21 tagProperties: {
22 value: null,
23 serializable: true
24 },
25
26 penProperties: {
27 value: null,
28 serializable: true
29 },
30
31 textProperties: {
32 value: null,
33 serializable: true
34 },
35
36 shapeProperties: {
37 value: null,
38 serializable: true
39 },
40
41 brushProperties: {
42 value: null,
43 serializable: true
44 },
45
46 fillProperties: {
47 value: null,
48 serializable: true
49 },
50
51 inkbottleProperties: {
52 value: null,
53 serializable: true
54 },
55
56 eraserProperties: {
57 value: null,
58 serializable: true
59 },
60
61 rotateStageProperties: {
62 value: null,
63 serializable: true
64 },
65
66 panProperties: {
67 value: null,
68 serializable: true
69 },
70
71 zoomProperties: {
72 value: null,
73 serializable: true
74 },
75
76 rotate3DProperties: {
77 value: null,
78 serializable: true
79 },
80
81 translate3DProperties: {
82 value: null,
83 serializable: true
84 },
85
86 toolsData: {
87 value: null,
88 serializable: true
89 },
90
12 _currentDocument: { 91 _currentDocument: {
13 enumerable: false, 92 enumerable: false,
14 value: null 93 value: null
@@ -28,7 +107,8 @@ exports.ToolsProperties = Montage.create(Component, {
28 107
29 this.disabled = !this._currentDocument; 108 this.disabled = !this._currentDocument;
30 109
31 } 110 },
111 serializable: true
32 }, 112 },
33 113
34 _disabled: { 114 _disabled: {