diff --git a/aqt/editor.py b/aqt/editor.py index 0b8183218..0c3ad69a8 100644 --- a/aqt/editor.py +++ b/aqt/editor.py @@ -158,6 +158,14 @@ function setFonts(fonts) { } } +function showDupes() { + $("#dupes").show(); +} + +function hideDupes() { + $("#dupes").hide(); +} + $(function () { // ignore drops outside the editable area document.body.ondragover = function () { @@ -173,6 +181,7 @@ $(function () { });
+