2020-12-06 18:41:54 +01:00
|
|
|
export class HtmlUtility{
|
2023-01-10 22:11:16 +01:00
|
|
|
static showControlWhen(jQuerySelector, condition) {
|
2020-12-06 18:41:54 +01:00
|
|
|
if (condition) {
|
2022-12-09 02:00:31 +01:00
|
|
|
jQuerySelector.show();
|
2020-12-06 18:41:54 +01:00
|
|
|
}
|
|
|
|
else {
|
2022-12-09 02:00:31 +01:00
|
|
|
jQuerySelector.hide();
|
2020-12-06 18:41:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|