pushbutton changed to link in left column
This commit is contained in:
@ -216,7 +216,6 @@ function updateTarget(component) {
|
||||
let matches = document.getElementsByName(component.name);
|
||||
let elem = matches[0]; // Should be the only match
|
||||
elem.value = component.value;
|
||||
|
||||
let row = elem.closest('div');
|
||||
row.classList.remove('row-waiting-for-answer');
|
||||
|
||||
@ -229,7 +228,9 @@ function updateTarget(component) {
|
||||
}
|
||||
}
|
||||
elem.actualValue = component.value;
|
||||
resizeTextfield(elem);
|
||||
if(elem.__ctype__ == 'input') {
|
||||
resizeTextfield(elem);
|
||||
}
|
||||
}
|
||||
|
||||
function updateStatus(component) {
|
||||
|
Reference in New Issue
Block a user