We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210cb51 commit aa22fdbCopy full SHA for aa22fdb
src/consts/events/events.ts
@@ -2,4 +2,8 @@
2
readonly button_test: {
3
readonly path: string;
4
};
5
+
6
+ readonly breadcrumb_button: {
7
8
+ }
9
src/views/utils/view-utils.ts
@@ -13,3 +13,13 @@ export function createContentPage() {
13
page.appendChild(wrapper);
14
return [page, wrapper];
15
}
16
17
+function clearWrapper() {
18
+ const cleanWrapper = document.getElementById('wrapper');
19
+ cleanWrapper?.childNodes.forEach((childNode) => {
20
+ cleanWrapper.removeChild(childNode);
21
+ });
22
23
+ return cleanWrapper;
24
+}
25
0 commit comments