From 9494379f9379c2de3814e5c012faa4181801991b Mon Sep 17 00:00:00 2001 From: Devaev Maxim Date: Sun, 19 Jul 2020 18:15:26 +0300 Subject: [PATCH] lint fix --- web/share/js/tools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/share/js/tools.js b/web/share/js/tools.js index 580c0f92..3cf48252 100644 --- a/web/share/js/tools.js +++ b/web/share/js/tools.js @@ -141,7 +141,7 @@ export var tools = new function() { } }; - this.getRadioValue = function(name, value) { + this.getRadioValue = function(name) { return document.querySelector(`input[type="radio"][name="${name}"]:checked`).value; };