Skip to content

Commit

Permalink
fix(flashcard): add missed loader
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyurec committed Nov 7, 2022
1 parent b6b6ed0 commit 101a4a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/awesomeProps/awesomeProps.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
position: absolute;
z-index: 0;
margin-top: -0.12ex;
left: 9px;
left: 8px;
font-family: 'tabler-icons';
color: #888888AA;
background: var(--ls-page-properties-background-color);
Expand Down
3 changes: 3 additions & 0 deletions src/modules/plugin/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
awesomePropsLoad, awesomePropsLoadUnload,
calendarLoad, calendarUnload,
hidePropsUnload, hidePropsLoad,
flashcardLoad, flashcardUnload,
} from '../internal';
import { checkUpdate, getInheritedBackgroundColor } from '../utils';

Expand Down Expand Up @@ -67,6 +68,7 @@ const runStuff = async () => {
headersLabelsLoad();
columnsLoad();
quoteLoad();
flashcardLoad();
calendarLoad();
}, 2000);
setTimeout(() => {
Expand All @@ -84,6 +86,7 @@ const stopStuff = () => {
headersLabelsUnload();
columnsUnload();
quoteUnload();
flashcardUnload();
calendarUnload();
hidePropsUnload();
}

0 comments on commit 101a4a1

Please sign in to comment.