initial commit
Some checks failed
Build and Deploy / build (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
2024-07-08 04:53:50 -05:00
parent 33ebd7d5c9
commit 2eeeb8b8c1
196 changed files with 12617 additions and 75 deletions

View File

@@ -0,0 +1,7 @@
import { back2top } from '../components/back-to-top';
import { loadTooptip } from '../components/tooltip-loader';
export function basic() {
back2top();
loadTooptip();
}

View File

@@ -0,0 +1,7 @@
import { modeWatcher } from '../components/mode-watcher';
import { sidebarExpand } from '../components/sidebar';
export function initSidebar() {
modeWatcher();
sidebarExpand();
}

View File

@@ -0,0 +1,5 @@
import { displaySearch } from '../components/search-display';
export function initTopbar() {
displaySearch();
}