Various bugfixes

This commit is contained in:
danielyxie
2019-02-20 00:42:27 -08:00
parent 6d81c00f37
commit 107977e6f4
19 changed files with 139 additions and 71 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
import { setTimeoutRef } from "../utils/SetTimeoutRef";
import { getElementById } from "../../utils/uiHelpers/getElementById";
import { Action } from "../types";
@@ -23,5 +24,5 @@ export function createStatusText(text: string) {
statusElement.innerText = "";
};
x = setTimeout(handler, threeSeconds);
x = setTimeoutRef(handler, threeSeconds);
}