aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/list.reel
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/list.reel')
-rwxr-xr-xnode_modules/montage/ui/list.reel/list.html6
-rwxr-xr-xnode_modules/montage/ui/list.reel/list.js24
2 files changed, 17 insertions, 13 deletions
diff --git a/node_modules/montage/ui/list.reel/list.html b/node_modules/montage/ui/list.reel/list.html
index 25027bcb..f0d648c0 100755
--- a/node_modules/montage/ui/list.reel/list.html
+++ b/node_modules/montage/ui/list.reel/list.html
@@ -10,7 +10,7 @@
10 <script type="text/montage-serialization">{ 10 <script type="text/montage-serialization">{
11 11
12 "repetition1": { 12 "repetition1": {
13 "prototype": "montage/ui/repetition.reel", 13 "prototype": "ui/repetition.reel",
14 "properties": { 14 "properties": {
15 "element": { 15 "element": {
16 "#": "repetition" 16 "#": "repetition"
@@ -24,7 +24,7 @@
24 } 24 }
25 }, 25 },
26 "scroller1": { 26 "scroller1": {
27 "prototype": "montage/ui/scroller.reel", 27 "prototype": "ui/scroller.reel",
28 "properties": { 28 "properties": {
29 "element": { 29 "element": {
30 "#": "scroller" 30 "#": "scroller"
@@ -35,7 +35,7 @@
35 } 35 }
36 }, 36 },
37 "owner": { 37 "owner": {
38 "prototype": "montage/ui/list.reel", 38 "prototype": "ui/list.reel",
39 "properties": { 39 "properties": {
40 "element": { 40 "element": {
41 "#": "EA5D3E95-BA4E-4696-BBBE-B4DE2F6ED6C9" 41 "#": "EA5D3E95-BA4E-4696-BBBE-B4DE2F6ED6C9"
diff --git a/node_modules/montage/ui/list.reel/list.js b/node_modules/montage/ui/list.reel/list.js
index 02c91093..63ff09a2 100755
--- a/node_modules/montage/ui/list.reel/list.js
+++ b/node_modules/montage/ui/list.reel/list.js
@@ -15,13 +15,13 @@ var Montage = require("montage").Montage,
15 @extends module:montage/ui/component.Component 15 @extends module:montage/ui/component.Component
16 */ 16 */
17var List = exports.List = Montage.create(Component,/** @lends module:"montage/ui/list.reel".List# */ { 17var List = exports.List = Montage.create(Component,/** @lends module:"montage/ui/list.reel".List# */ {
18/** 18 /**
19 Description TODO 19 Description TODO
20 @private 20 @private
21*/ 21 */
22 _repetition: { 22 _repetition: {
23 enumerable: false, 23 value: null,
24 value: null 24 serializable: true
25 }, 25 },
26 /** 26 /**
27 Description TODO 27 Description TODO
@@ -29,19 +29,22 @@ var List = exports.List = Montage.create(Component,/** @lends module:"montage/ui
29 @default null 29 @default null
30 */ 30 */
31 delegate: { 31 delegate: {
32 enumerable: false, 32 serializable: true,
33 value: null 33 value: null
34 }, 34 },
35 35
36 objects: { 36 objects: {
37 serializable: true,
37 value: null 38 value: null
38 }, 39 },
39 40
40 contentController: { 41 contentController: {
42 serializable: true,
41 value: null 43 value: null
42 }, 44 },
43 45
44 axis: { 46 axis: {
47 serializable: true,
45 value: null 48 value: null
46 }, 49 },
47 50
@@ -50,6 +53,7 @@ var List = exports.List = Montage.create(Component,/** @lends module:"montage/ui
50 @private 53 @private
51*/ 54*/
52 isSelectionEnabled: { 55 isSelectionEnabled: {
56 serializable: true,
53 value: null 57 value: null
54 }, 58 },
55 59