forked from usablica/introjs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
118 lines (117 loc) · 2.59 KB
/
sidebars.js
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
module.exports = {
someSidebar: [
{
type: 'category',
label: 'Getting Started',
items: [
'index',
'getting-started/install',
'getting-started/start',
'examples/basic/hello-world',
'getting-started/license',
'support',
'community'
]
},
{
label: "Examples",
type: 'category',
items: [
{
type: 'category',
label: 'Basic',
items: [
'examples/basic/hello-world',
'examples/basic/json-config',
'examples/basic/floating-tooltip',
'examples/basic/tooltip-positions',
'examples/basic/dont-show-again',
'examples/basic/hints',
]
},
{
type: 'category',
label: 'Customizing',
items: [
'examples/customizing/html-tooltip',
'examples/customizing/css-class',
'examples/customizing/progress-bar',
'examples/customizing/without-buttons',
'examples/customizing/without-bullets',
'examples/customizing/disable-interaction',
'examples/customizing/rtl',
]
},
{
type: 'category',
label: 'Events',
items: [
'examples/events/confirm-before-exit',
]
},
{
type: 'category',
label: 'Advanced',
items: [
'examples/advanced/svg',
'examples/advanced/scrollable-element',
'examples/advanced/async-await',
]
}
]
},
{
label: "Tour",
type: 'category',
items: [
'intro/api',
'intro/attributes',
'intro/options'
]
},
{
label: "Hints",
type: "category",
items: [
'hints/api',
'hints/attributes',
'hints/options'
]
},
{
type: "category",
label: "Themes",
items: [
'themes/install',
'themes/list'
]
},
{
type: "category",
label: "Wrappers",
items: [
'wrappers/react',
'wrappers/angularjs',
'wrappers/dart',
'wrappers/drupal',
'wrappers/ember',
'wrappers/gwt',
'wrappers/R',
'wrappers/rails',
'wrappers/wordpress',
'wrappers/yii',
'wrappers/yii2',
'wrappers/magento',
'wrappers/add'
]
},
{
type: "category",
label: "Developers",
items: [
'developers/build',
'developers/changelog'
]
},
]
};