forked from mirrors/easyappointments
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
|
$div.html(html);
|
||||||
.html(html)
|
|
||||||
.toggle(html);
|
if (html) {
|
||||||
|
$div.show();
|
||||||
|
} else {
|
||||||
|
$div.hide();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
})(window.FrontendBook);
|
})(window.FrontendBook);
|
||||||
|
|
Loading…
Reference in a new issue