diff options
author | Armen Kesablyan | 2012-06-19 01:03:59 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-06-19 01:03:59 -0700 |
commit | 2e13a73e4ee980a6f73f6ff48b2a195eb209a7db (patch) | |
tree | d352f5e769eae0e1b7b76ccbeafa9b174b1a9918 /js/components/layout/tools-properties.reel/tools-properties.js | |
parent | 244e608645778746d1a3b5aa0d4c0868f7c5c272 (diff) | |
parent | c59eb371559a3061ce53223e249ca97daace5968 (diff) | |
download | ninja-2e13a73e4ee980a6f73f6ff48b2a195eb209a7db.tar.gz |
Merge branch 'refs/heads/master' into binding
Conflicts:
js/components/layout/tools-list.reel/tools-list.html
js/components/layout/tools-properties.reel/tools-properties.html
js/document/document-html.js
js/document/templates/app/main.js
js/panels/Panel.reel/Panel.js
node_modules/montage/ui/native-control.js
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/components/layout/tools-properties.reel/tools-properties.js')
-rwxr-xr-x | js/components/layout/tools-properties.reel/tools-properties.js | 82 |
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 | ||
10 | exports.ToolsProperties = Montage.create(Component, { | 10 | exports.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: { |