Renommage showControlWhen

Vu que la méthode est publique
This commit is contained in:
2023-01-10 22:11:16 +01:00
parent f20788d6d9
commit 05e48b61ff
8 changed files with 20 additions and 20 deletions

View File

@ -1,5 +1,5 @@
export class HtmlUtility{
static _showControlWhen(jQuerySelector, condition) {
static showControlWhen(jQuerySelector, condition) {
if (condition) {
jQuerySelector.show();
}