From 29493b0348457798df549c985b2f4144e7374565 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sun, 8 Nov 2020 18:31:27 +0530 Subject: [PATCH] Simiplify sidebar structure for DOM Manipulation I have called this whole section as "DOM manipulation" (instead of DOM and events), so all the sub-files can be named easily with that context, without prefixing with "element-" or "DOM". Renamed "DOM manipulation" page title to "Creating elements", then shortended title for "Child and Content" file by removing prefix. --- docs/create-modify-element.mdx | 3 +-- docs/element-child-content.mdx | 2 +- sidebars.js | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/create-modify-element.mdx b/docs/create-modify-element.mdx index c733c1b..cdd3301 100644 --- a/docs/create-modify-element.mdx +++ b/docs/create-modify-element.mdx @@ -1,7 +1,6 @@ --- id: create-modify-element -sidebar_label: DOM Manipulation -title: Basic DOM Manipulation +title: Creating elements slug: / --- diff --git a/docs/element-child-content.mdx b/docs/element-child-content.mdx index a3cc009..05028cd 100644 --- a/docs/element-child-content.mdx +++ b/docs/element-child-content.mdx @@ -1,6 +1,6 @@ --- id: element-child-content -title: Element properties - Child and Content +title: Child and Content --- import Admonition from "../components/Admonition" diff --git a/sidebars.js b/sidebars.js index d7df4b6..8a84af2 100644 --- a/sidebars.js +++ b/sidebars.js @@ -1,6 +1,6 @@ module.exports = { "Quick Guide": { - "DOM and Events": [ + "DOM Manipulation": [ "create-modify-element", 'element-child-content', 'element-position-scroll',