Fixed overlapping lines + Typo
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user