diff --git a/time.html b/time.html index c397bd0..066d189 100644 --- a/time.html +++ b/time.html @@ -10,7 +10,6 @@ const lightColor = "#ffffff"; const fontSizeFallbackPx = 300; const intervalMillisec = 200; const bigFontSizeFactor = 1.2; -const smallFontSizeFactor = 1.05; let light = false; let help = false; @@ -72,14 +71,6 @@ function keyPress(event) { fontSizePx = fontSizeFallbackPx; setSize(); break; - case "*": - fontSizePx *= smallFontSizeFactor; - setSize(); - break; - case "_": - fontSizePx /= smallFontSizeFactor; - setSize(); - break; case "h": toggleHelp(); break;