mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Fix sercice details display on booking page.
This commit is contained in:
parent
14540bfb44
commit
3c85c420c5
2 changed files with 3 additions and 1 deletions
|
@ -156,7 +156,7 @@
|
|||
<select id="select-provider" class="col-xs-12 col-sm-4 form-control"></select>
|
||||
</div>
|
||||
|
||||
<div id="service-description" style="display:none;"></div>
|
||||
<div id="service-description"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -737,7 +737,9 @@ window.FrontendBook = window.FrontendBook || {};
|
|||
'text': service.description
|
||||
})
|
||||
.appendTo($serviceDescription);
|
||||
}
|
||||
|
||||
if (service.duration || Number(service.price) > 0 || service.location) {
|
||||
$('<br/>')
|
||||
.appendTo($serviceDescription);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue