aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/tag-properties.reel/tag-properties.js
diff options
context:
space:
mode:
authorJon Reid2012-06-15 10:10:41 -0700
committerJon Reid2012-06-15 10:10:41 -0700
commit526ac54f73d53e1e2a3d6a4dbf4f9992c143baf7 (patch)
tree65939e59615aaa10a7db77211e71616ad531bd0e /js/components/tools-properties/tag-properties.reel/tag-properties.js
parentb5b760ee82e5cc4da176914983a6002cbf86c11a (diff)
parent5ee0c89fa0c7acc280ff3b884767e8513fd0b315 (diff)
downloadninja-526ac54f73d53e1e2a3d6a4dbf4f9992c143baf7.tar.gz
Merge remote-tracking branch 'ninja-internal/master' into test-merge
Conflicts: js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js js/panels/Timeline/TimelineTrack.reel/TimelineTrack.html js/panels/Timeline/TimelineTrack.reel/TimelineTrack.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 }