aboutsummaryrefslogtreecommitdiff
path: root/js/components/tools-properties/tag-properties.reel/tag-properties.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-19 01:03:59 -0700
committerArmen Kesablyan2012-06-19 01:03:59 -0700
commit2e13a73e4ee980a6f73f6ff48b2a195eb209a7db (patch)
treed352f5e769eae0e1b7b76ccbeafa9b174b1a9918 /js/components/tools-properties/tag-properties.reel/tag-properties.js
parent244e608645778746d1a3b5aa0d4c0868f7c5c272 (diff)
parentc59eb371559a3061ce53223e249ca97daace5968 (diff)
downloadninja-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/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 }