mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Fix display of service details when the service change on the booking process page.
This commit is contained in:
parent
80b53b2dd0
commit
d8a03a50ab
1 changed files with 7 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue