aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/substitution.reel/substitution.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/substitution.reel/substitution.js')
-rwxr-xr-xnode_modules/montage/ui/substitution.reel/substitution.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/node_modules/montage/ui/substitution.reel/substitution.js b/node_modules/montage/ui/substitution.reel/substitution.js
index bf3ddcaa..141218f5 100755
--- a/node_modules/montage/ui/substitution.reel/substitution.js
+++ b/node_modules/montage/ui/substitution.reel/substitution.js
@@ -29,7 +29,6 @@ exports.Substitution = Montage.create(Slot, /** @lends module:"montage/ui/substi
29 @default {} 29 @default {}
30 */ 30 */
31 switchComponents: { 31 switchComponents: {
32 enumerable: false,
33 serializable: true, 32 serializable: true,
34 distinct: true, 33 distinct: true,
35 value: {} 34 value: {}
@@ -39,7 +38,6 @@ exports.Substitution = Montage.create(Slot, /** @lends module:"montage/ui/substi
39 @private 38 @private
40*/ 39*/
41 _switchValue: { 40 _switchValue: {
42 enumerable: false,
43 value: null 41 value: null
44 }, 42 },
45/** 43/**
@@ -48,7 +46,6 @@ exports.Substitution = Montage.create(Slot, /** @lends module:"montage/ui/substi
48 @default null 46 @default null
49 */ 47 */
50 switchValue: { 48 switchValue: {
51 enumerable: false,
52 get: function() { 49 get: function() {
53 return this._switchValue; 50 return this._switchValue;
54 }, 51 },
@@ -63,7 +60,8 @@ exports.Substitution = Montage.create(Slot, /** @lends module:"montage/ui/substi
63 if (this.switchComponents) { 60 if (this.switchComponents) {
64 this.content = this.switchComponents[this.switchValue]; 61 this.content = this.switchComponents[this.switchValue];
65 } 62 }
66 } 63 },
64 serializable: true
67 }, 65 },
68/** 66/**
69 Description TODO 67 Description TODO
@@ -71,7 +69,7 @@ exports.Substitution = Montage.create(Slot, /** @lends module:"montage/ui/substi
71 @default null 69 @default null
72 */ 70 */
73 transition: { 71 transition: {
74 enumerable: false, 72 value: null,
75 value: null 73 serializable: true
76 } 74 }
77}); 75});