summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-07-19 18:15:26 +0300
committerDevaev Maxim <[email protected]>2020-07-19 18:15:26 +0300
commit9494379f9379c2de3814e5c012faa4181801991b (patch)
tree98716a1438b55f33e16115dde063605047beb5b4 /web
parent51437ca8032facf9ba4f6e11056391fac3b9e371 (diff)
lint fix
Diffstat (limited to 'web')
-rw-r--r--web/share/js/tools.js2
1 files changed, 1 insertions, 1 deletions
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;
};