From 46f82102f148004665350a24c7674cc7fa42c611 Mon Sep 17 00:00:00 2001 From: vogloblinsky Date: Tue, 23 Apr 2024 19:15:53 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=206e89b?= =?UTF-8?q?1746dd6965037f26cdd163a0bba4488dac9=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- additional-documentation/actions.html | 22 +++-- .../actions/creation-of-a-todo.html | 22 +++-- .../actions/delete-a-todo.html | 22 +++-- .../actions/edition-of-a-todo.html | 22 +++-- .../actions/update-the-status-of-a-todo.html | 22 +++-- additional-documentation/introduction.html | 22 +++-- classes/StringIndexedItems.html | 22 +++-- classes/Todo.html | 22 +++-- components/AboutComponent.html | 22 +++-- components/AppComponent.html | 22 +++-- components/CompodocComponent.html | 22 +++-- components/EmptyComponent.html | 22 +++-- components/EmptyParentComponent.html | 22 +++-- components/FooterComponent.html | 22 +++-- components/HeaderComponent.html | 22 +++-- components/HomeComponent.html | 22 +++-- components/ListComponent.html | 22 +++-- components/TodoComponent.html | 24 +++-- components/TodoMVCComponent.html | 22 +++-- coverage.html | 22 +++-- dependencies.html | 36 ++++--- directives/BorderDirective.html | 22 +++-- directives/DoNothingDirective.html | 22 +++-- directives/HighlightAndBorderDirective.html | 22 +++-- directives/HighlightDirective.html | 22 +++-- guards/NoopGuard.html | 22 +++-- index.html | 22 +++-- injectables/EmitterService.html | 22 +++-- injectables/EmptyService.html | 22 +++-- injectables/TodoStore.html | 22 +++-- interceptors/NoopInterceptor.html | 22 +++-- interfaces/ClockInterface.html | 22 +++-- interfaces/InterfaceWithIndexable.html | 22 +++-- interfaces/LabelledTodo.html | 22 +++-- interfaces/SearchFunc.html | 22 +++-- interfaces/StringArray.html | 22 +++-- interfaces/TimeInterface.html | 22 +++-- interfaces/superString.html | 22 +++-- js/libs/bootstrap-native.js | 2 +- js/menu-wc_es5.js | 7 +- js/search/search_index.js | 4 +- license.html | 22 +++-- miscellaneous/enumerations.html | 22 +++-- miscellaneous/functions.html | 22 +++-- miscellaneous/typealiases.html | 22 +++-- miscellaneous/variables.html | 22 +++-- modules.html | 22 +++-- modules/AboutModule.html | 98 ++++++++++--------- modules/AboutModule/dependencies.svg | 76 +++++++------- modules/AppModule.html | 84 ++++++++-------- modules/AppModule/dependencies.svg | 62 ++++++------ modules/AppRoutingModule.html | 22 +++-- modules/FooterModule.html | 22 +++-- modules/HeaderModule.html | 30 +++--- modules/HeaderModule/dependencies.svg | 8 +- modules/HomeModule.html | 88 +++++++++-------- modules/HomeModule/dependencies.svg | 66 ++++++------- modules/HomeRoutingModule.html | 22 +++-- modules/ListModule.html | 22 +++-- modules/TodoModule.html | 22 +++-- overview.html | 22 +++-- pipes/FirstUpperPipe.html | 22 +++-- pipes/StandAlonePipe.html | 22 +++-- properties.html | 22 +++-- routes.html | 22 +++-- 65 files changed, 980 insertions(+), 749 deletions(-) diff --git a/additional-documentation/actions.html b/additional-documentation/actions.html index 0499e8b..3078a35 100644 --- a/additional-documentation/actions.html +++ b/additional-documentation/actions.html @@ -60,15 +60,6 @@ darkModeState = darkModeStateLocal === 'true'; } toggleDarkMode(darkModeState); - - if ($darkModeToggles.length > 0) { - for (var i = 0; i < $darkModeToggleSwitchers.length; i++) { - $darkModeToggleSwitchers[i].addEventListener('change', function (event) { - darkModeState = !darkModeState; - toggleDarkMode(darkModeState); - }); - } - }