aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/tag-properties.reel/tag-properties.js
diff options
context:
space:
mode:
authorAnanya Sen2012-06-19 11:00:49 -0700
committerAnanya Sen2012-06-19 11:00:49 -0700
commitf1d8401aeb84e0eb0680caf72878dae26fd78a37 (patch)
tree31771ccaf3d1e2ddf01fa9605438d20be0d155d7 /js/components/tools-properties/tag-properties.reel/tag-properties.js
parent9ea2610cec6569e7b7d5268b6c65bbf94c4753e5 (diff)
parent483ad57efcd6475776f580c3af5b60e6deeaf781 (diff)
downloadninja-f1d8401aeb84e0eb0680caf72878dae26fd78a37.tar.gz
Merge branch 'refs/heads/ninja-internal-master' into cut-copy-paste
Diffstat (limited to 'js/components/tools-properties/tag-properties.reel/tag-properties.js')
-rwxr-xr-xjs/components/tools-properties/tag-properties.reel/tag-properties.js26
1 files changed, 18 insertions, 8 deletions
diff --git a/js/components/tools-properties/tag-properties.reel/tag-properties.js b/js/components/tools-properties/tag-properties.reel/tag-properties.js
index 52c6f44c..d38419aa 100755
--- a/js/components/tools-properties/tag-properties.reel/tag-properties.js
+++ b/js/components/tools-properties/tag-properties.reel/tag-properties.js
@@ -9,16 +9,26 @@ var Component = require("montage/ui/component").Component;
9var ToolProperties = require("js/components/tools-properties/tool-properties").ToolProperties; 9var ToolProperties = require("js/components/tools-properties/tool-properties").ToolProperties;
10 10
11var TagProperties = exports.TagProperties = Montage.create(ToolProperties, { 11var TagProperties = exports.TagProperties = Montage.create(ToolProperties, {
12 divElement: { value: null, enumerable: false }, 12 divElement: {
13 imageElement: { value: null, enumerable: false }, 13 value: null,
14 videoElement: { value: null, enumerable: false }, 14 serializable: true
15 canvasElement: { value: null, enumerable: false }, 15 },
16 customElement: { value: null, enumerable: false }, 16
17 classField: { value: null, enumerable: false }, 17 imageElement: { value: null, serializable: true },
18 customName: { value: null, enumerable: false }, 18 videoElement: { value: null, serializable: true },
19 customLabel: { value: null, enumerable: false }, 19 canvasElement: { value: null, serializable: true },
20 customElement: { value: null, serializable: true },
21 classField: { value: null, serializable: true },
22 customName: { value: null, serializable: true },
23 customLabel: { value: null, serializable: true },
24
20 addedColorChips: { value: false }, 25 addedColorChips: { value: false },
21 26
27 _fillColorCtrl: {
28 value: null,
29 serializable: true
30 },
31
22 _fill: { 32 _fill: {
23 enumerable: false, 33 enumerable: false,
24 value: { colorMode: 'nocolor', color: null, webGlColor: null } 34 value: { colorMode: 'nocolor', color: null, webGlColor: null }