-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnode.json
More file actions
93 lines (92 loc) · 2.27 KB
/
node.json
File metadata and controls
93 lines (92 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "Play List",
"options": [{
"title": "Configuration",
"type": "section"
}, {
"title": "Scroller",
"ui_width": 4,
"name": "scroller",
"type": "resource",
"valid": ["child"],
"default": "default"
}, {
"title": "Sidebar",
"ui_width": 4,
"name": "sidebar",
"type": "resource",
"valid": ["child"],
"default": "default"
}, {
"title": "Background",
"ui_width": 4,
"name": "background",
"type": "resource",
"valid": ["image", "video"],
"default": "empty.png"
}, {
"title": "Show scroller",
"ui_width": 4,
"name": "show_scroller",
"type": "select",
"options": [
["always", "Always"],
["child", "Let content decide (default)"],
["never", "Never"]
],
"default": "child"
}, {
"title": "Show sidebar",
"ui_width": 4,
"name": "show_sidebar",
"type": "select",
"options": [
["always", "Always"],
["child", "Let content decide (default)"],
["never", "Never"]
],
"default": "child"
},
{
"title": "Module Playlist",
"type": "section"
}, {
"title": "Playlist",
"name": "playlist",
"type": "list",
"itemname": "Item",
"items": [{
"title": "Module",
"ui_width": 4,
"name": "module",
"type": "resource",
"valid": ["child"],
"default": "idle"
}, {
"title": "Items to show",
"ui_width": 3,
"name": "num_items",
"type": "select",
"options": [
[0, "0 (disabled)"],
[1, "1 item"],
[2, "2 items"],
[3, "3 items"],
[4, "4 items"],
[5, "5 items"],
[6, "6 items"]
],
"default": 1
}],
"default": [
{
"module": "twitter",
"num_items": 1
},
{
"module": "media",
"num_items": 1
}
]
}]
}