Fix display of service details when the service change on the booking process page.

This commit is contained in:
Sébastien 2020-05-10 00:01:17 +02:00
parent 80b53b2dd0
commit d8a03a50ab
1 changed files with 7 additions and 3 deletions

View File

@ -712,9 +712,13 @@ window.FrontendBook = window.FrontendBook || {};
}
});
$div
.html(html)
.toggle(html);
$div.html(html);
if (html) {
$div.show();
} else {
$div.hide();
}
}
})(window.FrontendBook);