From 0e1a276f19ea70009c5a649e9667861d7c346a7e Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Wed, 6 Jun 2012 00:25:27 -0700 Subject: first iteration of adding serializable to ninja plus other changes to run the latest montage Signed-off-by: Valerio Virgillito --- .../shape-properties.reel/shape-properties.js | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) (limited to 'js/components/tools-properties/shape-properties.reel/shape-properties.js') diff --git a/js/components/tools-properties/shape-properties.reel/shape-properties.js b/js/components/tools-properties/shape-properties.reel/shape-properties.js index bd0cf8cf..5829634c 100755 --- a/js/components/tools-properties/shape-properties.reel/shape-properties.js +++ b/js/components/tools-properties/shape-properties.reel/shape-properties.js @@ -10,6 +10,77 @@ var Montage = require("montage/core/core").Montage, var ShapeProperties = exports.ShapeProperties = Montage.create(ToolProperties, { toolsData: { value: null }, + + _strokeMaterial: { + value: null, + serializable: true + }, + + _fillIcon: { + value: null, + serializable: true + }, + + _fillMaterial: { + value: null, + serializable: true + }, + + _useWebGL: { + value: null, + serializable: true + }, + + _materialLabel: { + value: null, + serializable: true + }, + + _strokeIcon: { + value: null, + serializable: true + }, + + _fillColorCtrlIcon: { + value: null, + serializable: true + }, + + _fillColorCtrl: { + value: null, + serializable: true + }, + + _strokeColorCtrl: { + value: null, + serializable: true + }, + + _strokeSize: { + value: null, + serializable: true + }, + + ovalProperties: { + value: null, + serializable: true + }, + + rectProperties: { + value: null, + serializable: true + }, + + lineProperties: { + value: null, + serializable: true + }, + + endDivider: { + value: null, + serializable: true + }, + _use3D: { value: false }, addedColorChips: { value: false }, -- cgit v1.2.3