From ebf288ff705b8967adb0cd762a290e6ad561408d Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sat, 23 Oct 2021 12:47:29 +0200 Subject: [PATCH] remove useless code --- main.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/main.js b/main.js index 35282bd..e69de29 100644 --- a/main.js +++ b/main.js @@ -1,23 +0,0 @@ -window.addEventListener('load', function() { - try { - /* - var inputs = document.querySelectorAll('input[type="text"], input[autofocus], input[placeholder]'); - var inputsLength = inputs.length; - - for (var u = 0; u < inputsLength; u++) { - inputs[u].blur(); - } - - - var stylusInterval = window.setInterval(function() { - var stylus = document.querySelector('style.stylus'); - - if (stylus && !stylus.getAttribute('data-clean')) { - stylus.innerHTML = ''; - stylus.setAttribute('data-clean', 1); - window.clearInterval(stylusInterval); - } - }, 100); - */ - } catch (e) {} -});