mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
fix reviewer_extras
This commit is contained in:
parent
ac4a1cd8e0
commit
c41e455554
2 changed files with 2 additions and 7 deletions
|
@ -5,12 +5,6 @@
|
|||
@typescript-eslint/no-explicit-any: "off",
|
||||
*/
|
||||
|
||||
// This file currently fails compat check due to Promise.allSettled(). Once
|
||||
// the minimum iOS version is bumped to iOS 13, we should remove this.
|
||||
/* eslint
|
||||
compat/compat: "off",
|
||||
*/
|
||||
|
||||
import "css-browser-selector/css_browser_selector.min";
|
||||
|
||||
export { default as $, default as jQuery } from "jquery/dist/jquery";
|
||||
|
|
|
@ -10,4 +10,5 @@
|
|||
|
||||
import { mutateNextCardStates } from "./answering";
|
||||
|
||||
(window as any).anki.mutateNextCardStates = mutateNextCardStates;
|
||||
globalThis.anki = globalThis.anki || {};
|
||||
globalThis.anki.mutateNextCardStates = mutateNextCardStates;
|
||||
|
|
Loading…
Reference in a new issue