diff --git a/app.js b/app.js index 4d5b583..57afe63 100644 --- a/app.js +++ b/app.js @@ -14,9 +14,8 @@ for (let family in familiesSpeciesData) { } const isTouch = 'ontouchstart' in window || navigator.msMaxTouchPoints; -const smallScreen = screen.width <= 600 || screen.height <= 600; const hqHash = /#hq/.test(location.hash); -const renderingMode = !hqHash && (isTouch && smallScreen) ? 'low' : 'high'; +const renderingMode = !hqHash && isTouch ? 'low' : 'high'; if (renderingMode === 'low') document.getElementById('rendering-mode').hidden = false; diff --git a/index.html b/index.html index b7980a1..eaa1bff 100644 --- a/index.html +++ b/index.html @@ -105,9 +105,8 @@