use jQuery path for _showControlWhen

This commit is contained in:
2020-12-20 02:05:47 +01:00
parent 1bcfba1f68
commit a93b34d2ce
4 changed files with 8 additions and 8 deletions

View File

@ -1,10 +1,10 @@
export class HtmlUtility{
static _showControlWhen(control, condition) {
if (condition) {
$(control).show();
control.show();
}
else {
$(control).hide();
control.hide();
}
}
}