summaryrefslogtreecommitdiff
path: root/web/share/js/tools.js
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-07-21 15:02:57 +0300
committerDevaev Maxim <[email protected]>2020-07-21 15:27:14 +0300
commit360ff0090346fe2ead3e42d7bc39391325f8a2d3 (patch)
tree27de4c274acfe1abcc3df6b94d123a2cbb0fd03f /web/share/js/tools.js
parentb5ba546481dffa687395df725fb4dd57c7dc8338 (diff)
refactoring
Diffstat (limited to 'web/share/js/tools.js')
-rw-r--r--web/share/js/tools.js22
1 files changed, 13 insertions, 9 deletions
diff --git a/web/share/js/tools.js b/web/share/js/tools.js
index 3cf48252..74565932 100644
--- a/web/share/js/tools.js
+++ b/web/share/js/tools.js
@@ -107,7 +107,7 @@ export var tools = new function() {
};
};
- this.setOnUpSlider = function(el, delay, display_callback, execute_callback) {
+ this.sliderSetOnUp = function(el, delay, display_callback, execute_callback) {
el.execution_timer = null;
el.activated = false;
@@ -134,33 +134,37 @@ export var tools = new function() {
}, delay);
};
};
+ this.sliderSetParams = function(el, min, max, step, value) {
+ el.min = min;
+ el.max = max;
+ el.step = step;
+ el.value = value;
+ };
- this.setOnClickRadio = function(name, callback) {
+ this.radioSetOnClick = function(name, callback) {
for (let el of $$$(`input[type="radio"][name="${name}"]`)) {
this.setOnClick(el, callback);
}
};
-
- this.getRadioValue = function(name) {
+ this.radioGetValue = function(name) {
return document.querySelector(`input[type="radio"][name="${name}"]:checked`).value;
};
-
- this.setRadioValue = function(name, value) {
+ this.radioSetValue = function(name, value) {
for (let el of $$$(`input[type="radio"][name="${name}"]`)) {
el.checked = (el.value === value);
}
};
- this.setProgressPercent = function(el, title, percent) {
+ this.progressSetValue = function(el, title, percent) {
el.setAttribute("data-label", title);
$(`${el.id}-value`).style.width = `${percent}%`;
};
- this.setHiddenVisible = function(el, visible) {
+ this.hiddenSetVisible = function(el, visible) {
el.classList.toggle("hidden", !visible);
};
- this.setFeatureEnabled = function(el, enabled) {
+ this.featureSetEnabled = function(el, enabled) {
el.classList.toggle("feature-disabled", !enabled);
};