-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.json
53 lines (49 loc) · 1.32 KB
/
example.json
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
// Configuration options must be added and amended for all JSON files where required
// config.json - Used to disable globally
"_homeButton": {
"_isEnabled": false
}
// course.json - Use for global settings and navigation order
"_extensions": {
"_homeButton": {
"_navOrder": -1,
"_showLabel": true,
"alt": "",
"navLabel": "Home",
"_navTooltip": {
"_isEnabled": false,
"text": "Home"
}
}
}
// course.json - Use to configure at the menu level
"_homeButton": {
"_isEnabled": true,
"_hideHomeButton": false,
"_comment": "Amend _redirectToId to match the ID of the start / landing page",
"_redirectToId": "",
"_iconClasses": "",
"alt": "",
"_comment": "Option to override navigation button label and tooltip",
"navLabel": "Introduction",
"_navTooltip": {
"_isEnabled": true,
"text": "Introduction"
}
}
// contentObjects.json - Use to configure at the content object level
"_homeButton": {
"_isEnabled": true,
"_hideHomeButton": false,
"_hideBackButton": true,
"_comment": "Amend _redirectToId to match the ID of the start / landing page",
"_redirectToId": "",
"_iconClasses": "",
"alt": "",
"_comment": "Option to override navigation button label and tooltip",
"navLabel": "Introduction",
"_navTooltip": {
"_isEnabled": true,
"text": "Introduction"
}
}