2020-12-06 18:41:54 +01:00
|
|
|
export class HtmlUtility{
|
2022-12-09 02:00:31 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|