Disable no confirm checkbox when toggling the form
This commit is contained in:
parent
030345fe6b
commit
c02321368a
@ -259,6 +259,10 @@ class BrickSetSocket extends BrickSocket {
|
|||||||
this.html_input.disabled = !enabled;
|
this.html_input.disabled = !enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.html_no_confim) {
|
||||||
|
this.html_no_confim.disabled = !enabled;
|
||||||
|
}
|
||||||
|
|
||||||
if (this.html_owners) {
|
if (this.html_owners) {
|
||||||
this.html_owners.querySelectorAll('input').forEach(input => input.disabled = !enabled);
|
this.html_owners.querySelectorAll('input').forEach(input => input.disabled = !enabled);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user