Add possible pages to sidebar + add 2 empty pages

This commit is contained in:
2020-10-11 20:24:54 +05:30
parent 8341eef94e
commit d06a20c1db
3 changed files with 42 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
---
id: create-modify-element
title: Create / modify DOM nodes
sidebar_label: DOM Manipulation
slug: /
---
+4
View File
@@ -0,0 +1,4 @@
---
id: read-from-element
title: Properties of DOM nodes
---
+32 -3
View File
@@ -1,6 +1,35 @@
module.exports = { module.exports = {
someSidebar: { "Quick Guide": {
Docusaurus: ['doc1', 'doc2', 'doc3'], "DOM and Events": [
Features: ['mdx'], "create-modify-element",
'read-from-element',
],
/*
'DOM and Events': [
'create-modify-element',
'read-from-element',
'event-callback-delegation',
'event-delegation-bubbling',
'input-elements',
'form-validation',
'mouse-touch-events',
'scroll-intersection-observer',
],
'CSS': [
'common-selectors',
'specificity',
]
*/
}, },
tasks: [
/*
'infinite-scrolling-page-with-api',
'draggable-element',
'drag-and-drop',
'clock-ui',
'popup-manager',
'todo-list'
*/
],
}; };