Commit 0bed2af4 authored by Kevin Lyda's avatar Kevin Lyda 💬
Browse files

make entry even faster.

parent a487016a
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -61,7 +61,13 @@ cuberoot.addEventListener("keydown", function (e) {
  if (e.keyCode === 13) {
    check_cuberoot(e);
  }
})
});

cuberoot.addEventListener("keyup", function (e) {
  if (cuberoot.value.length >= 2) {
    check_cuberoot(e);
  }
});

function humanize_ms(ms) {
  if (ms < 1000) {