diff options
author | Devaev Maxim <[email protected]> | 2020-07-19 15:01:39 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-07-19 15:01:39 +0300 |
commit | af89118eda79ede894ff45a0bea7db030a8d6e86 (patch) | |
tree | 165b23df49998d3785933cfdcb530b6346938744 | |
parent | 2cdd55386bf0448023a08ea14e6cce8e47a36a83 (diff) |
fix
-rw-r--r-- | web/share/js/tools.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/tools.js b/web/share/js/tools.js index 92a701d2..580c0f92 100644 --- a/web/share/js/tools.js +++ b/web/share/js/tools.js @@ -137,7 +137,7 @@ export var tools = new function() { this.setOnClickRadio = function(name, callback) { for (let el of $$$(`input[type="radio"][name="${name}"]`)) { - this.setOnClick(el, callback) + this.setOnClick(el, callback); } }; |