Skip to content

Commit 8e46978

Browse files
committed
fix tippy top banner not closing on introduction and libraries pages
1 parent a5bad2f commit 8e46978

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/website/introduction/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { setupHighlighting } from "../highlighting.js";
22
import { setupJwtCounter } from "../counter.js";
3+
import { TopBanner } from "../top-banner.js";
34

45
// Initialization
56
setupHighlighting();
67
setupJwtCounter();
8+
TopBanner();

src/website/libraries/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import { setupLibraries } from "./libraries.js";
22
import { setupHighlighting } from "../highlighting.js";
33
import { setupJwtCounter } from "../counter.js";
4+
import { TopBanner } from "../top-banner.js";
45

56
// Initialization
67
setupLibraries();
78
setupHighlighting();
8-
setupJwtCounter();
9+
setupJwtCounter();
10+
TopBanner();

0 commit comments

Comments
 (0)