aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/tag-properties.reel/tag-properties.js
diff options
context:
space:
mode:
authorEric Guzman2012-06-19 01:20:36 -0700
committerEric Guzman2012-06-19 01:20:36 -0700
commit2ef72cdf0e59fb3623a2c13251ac707522f3dc5a (patch)
treef69f4e3de7e4441311ef2b38770e0ce26067aac4 /js/components/tools-properties/tag-properties.reel/tag-properties.js
parent5260d3dfd99d79924c4aaa3ab798e90c7d328d7d (diff)
parent1007cbf983ad0f2460a4122a492a96023fdb4439 (diff)
downloadninja-2ef72cdf0e59fb3623a2c13251ac707522f3dc5a.tar.gz
Merge branch 'binding' of github.com:dhg637/ninja-internal into binding
Conflicts: js/stage/binding-view.reel/binding-view.js
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 }