diff --git a/404.html b/404.html index 49445fc..18624c9 100755 --- a/404.html +++ b/404.html @@ -42,8 +42,6 @@ - - @@ -52,8 +50,6 @@ - - @@ -423,8 +419,6 @@

404 - Not found

- - \ No newline at end of file diff --git a/cleanup/index.html b/cleanup/index.html index c8f04d2..98a6965 100755 --- a/cleanup/index.html +++ b/cleanup/index.html @@ -46,8 +46,6 @@ - - @@ -56,8 +54,6 @@ - - @@ -461,8 +457,6 @@

4. Cleanup

- - \ No newline at end of file diff --git a/css/style.css b/css/style.css deleted file mode 100755 index afe4ec2..0000000 --- a/css/style.css +++ /dev/null @@ -1,72 +0,0 @@ -.no-bullet { -list-style: none; -} -.checklist-progressbar input[type="checkbox"] { - cursor: pointer; - margin-left: -1.75em; - margin-left: -1.75em; -} -.checklist-progressbar .progressbar { - box-sizing: content-box; - position: relative; - border-radius: 1px; - background-color: #ddd; - height: 10px; - margin-top: 0em; - margin-right: 2em; -} -.checklist-progressbar .progressbar .progressbar-inner { - display: block; - content: ""; - position: absolute; - top: 0; - left: 0; - width: 0%; - height: 100%; - background-color: green; - transition: all .3s linear; -} - -.checklist-progressbar .progressbar .progressbar-value { - position: absolute; - top: -.25em; - right: -2.6em; - min-width: 2.6em; - width: 15%; - font-size: 1em; - line-height: 1; - text-align: right; -} - -.checklist-progressbar input:checked + label { - font-style: italic; - text-decoration: line-through; -} - -.checklist-progressbar li { - position: relative; -} - -.checklist-progressbar input + label::before{ - content:''; - display:block; - position:absolute; - top: 50%; - left: 1.5em; - width:0%; - height:1px; - background: green; - transition:.25s ease-in-out; -} - -.checklist-progressbar input:checked + label::before{ - width: calc(100% - 3em); -} -.floating-panel { - width: 12%; - position: fixed; - right: 17%; - bottom: 0%; - border-radius: 0px; - padding: 1em; -} \ No newline at end of file diff --git a/getting-started/index.html b/getting-started/index.html index 153e86d..e48f240 100755 --- a/getting-started/index.html +++ b/getting-started/index.html @@ -46,8 +46,6 @@ - - @@ -56,8 +54,6 @@ - - @@ -559,36 +555,6 @@

Start Demo - -
-

Page Progress

-

Use these checkmarks to track your progress

- -
-
    - -
  • - - -
  • - -
  • - - -
  • - -
-
-
-
-
-
-
-
@@ -601,8 +567,6 @@

Page Progress

- - \ No newline at end of file diff --git a/index.html b/index.html index 4c129a8..28385c6 100755 --- a/index.html +++ b/index.html @@ -44,8 +44,6 @@ - - @@ -54,8 +52,6 @@ - - @@ -579,8 +575,6 @@

Compatibility - - \ No newline at end of file diff --git a/js/script.js b/js/script.js deleted file mode 100755 index 51c3643..0000000 --- a/js/script.js +++ /dev/null @@ -1,83 +0,0 @@ - var checkboxinputs = document.querySelectorAll(".checklist-progressbar input[type='checkbox']"); - var progressbar = document.querySelector('.checklist-progressbar .progressbar-inner'); - var progressbarvalue = document.querySelector('.checklist-progressbar .progressbar-value'); - var progresspercentageNum = 0; - var progresspercentage = "0%"; - - for ( var i = 0, len = checkboxinputs.length; i < len; i++ ) { - - var box = checkboxinputs[i]; - if (box.hasAttribute("id")) { - setupLocalStorage(box); - } - - checkboxinputs[i].addEventListener('click', function(e) { - checkNumberofChecked(); - updateProgressbar(); - }); - }; - - function checkNumberofChecked() { - var checkedboxes = 0; - for ( var i = 0, len = checkboxinputs.length; i < len; i++ ) { - if (checkboxinputs[i].checked) { - checkedboxes++; - }; - }; - progresspercentageNum = ((checkedboxes / checkboxinputs.length) * 100); - progresspercentage = ((checkedboxes / checkboxinputs.length) * 100) + "%"; - }; - - function updateProgressbar() { - - if (progressbar == null) { - return; - } - - if (progresspercentageNum < 100) { - progressbar.style.backgroundColor = "blue"; - } - else { - progressbar.style.backgroundColor = "green"; - /* "obslab" and "pageTitle" are defined in custom_theme/main.html - * obslab refers to extra.obslab in mkdocs.yaml - */ - - dynatrace.sendBizEvent("page_completion", { - "obslab": obslab, - "page": pageTitle - }); - }; - progressbar.style.width = progresspercentage; - progressbarvalue.innerHTML = Math.round(progresspercentageNum) + "%"; - }; - - function setupLocalStorage(box) { - var storageId = box.getAttribute("id"); - var oldVal = localStorage.getItem(storageId); - - if (oldVal == "true") { - box.checked = true; - } else { - box.checked = false; - }; - - box.addEventListener("change", function() { - localStorage.setItem(storageId, this.checked); - - /* "obslab" is defined in custom_theme/main.html - * and refers to extra.obslab in mkdocs.yaml - * "pageTitle" is defined in main.html - * it uses the current page title: page.title - */ - dynatrace.sendBizEvent("progress_report", { - "obslab": obslab, - "checkbox_id": this.id, - "checkbox_checked": this.checked, - "page": pageTitle, - }); - }); - }; - - checkNumberofChecked(); - updateProgressbar(); \ No newline at end of file diff --git a/resources/index.html b/resources/index.html index d3d207c..2a1437b 100755 --- a/resources/index.html +++ b/resources/index.html @@ -44,8 +44,6 @@ - - @@ -54,8 +52,6 @@ - - @@ -518,8 +514,6 @@

Resources - - \ No newline at end of file diff --git a/run-demo/index.html b/run-demo/index.html index c41c144..491e643 100755 --- a/run-demo/index.html +++ b/run-demo/index.html @@ -46,8 +46,6 @@ - - @@ -56,8 +54,6 @@ - - @@ -656,46 +652,6 @@

View Dashboard - -
-

Page Progress

-

Use these checkmarks to track your progress

- -
-
    - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
  • - - -
  • - -
-
-
-
-
-
-
-

@@ -708,8 +664,6 @@

Page Progress

- - \ No newline at end of file diff --git a/sitemap.xml.gz b/sitemap.xml.gz index 0640f09..e2777bf 100755 Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ diff --git a/whats-next/index.html b/whats-next/index.html index bbcfc9b..0237e66 100755 --- a/whats-next/index.html +++ b/whats-next/index.html @@ -46,8 +46,6 @@ - - @@ -56,8 +54,6 @@ - - @@ -462,8 +458,6 @@

5. What's Next?

- - \ No newline at end of file