Fixed overlapping lines + Typo

This commit is contained in:
2024-07-25 18:36:56 +02:00
parent ac733092cc
commit 61a7893990
3 changed files with 7 additions and 4 deletions

View File

@@ -39,7 +39,6 @@ function readValuesFromLocalstorage() {
inputElement.val(text_val);
} else if (inputType === 'checkbox') {
console.log('aaa')
var check_value = localStorage.getItem(inputName);
if (check_value !== null) {
inputElement.prop('checked', check_value === 'true');
@@ -135,7 +134,9 @@ function adjustLabelPosition() {
$('#advanced-tree-expand').bind('click', function(e) {
if (!advancedTreeExpanded){
advancedTreeExpanded = true;
$('#advanced-tree').show('fast');
$('#advanced-tree').show('fast', function() {
adjustLabelPosition();
});
$('#advanced-tree-expand i').text('remove');
} else {
advancedTreeExpanded = false;
@@ -149,7 +150,9 @@ function adjustLabelPosition() {
$('#compare-expand').bind('click', function(e) {
if (!compareExpanded){
compareExpanded = true;
$('#compare-settings').show('fast');
$('#compare-settings').show('fast', function() {
adjustLabelPosition();
});
$('#compare-expand i').text('remove');
} else {
compareExpanded = false;