forked from mirrors/easyappointments
Added the "any provider" option to the booking wizard.
This commit is contained in:
parent
cd58f8c6ae
commit
52692d92f5
1 changed files with 6 additions and 0 deletions
|
@ -139,6 +139,12 @@ var FrontendBook = {
|
|||
});
|
||||
});
|
||||
|
||||
// Add the "Any Provider" entry.
|
||||
if ($('#select-provider option').length > 1) {
|
||||
$('#select-provider').append(new Option(EALang['any_provider'] + ' *', 'any-provider'));
|
||||
}
|
||||
|
||||
|
||||
FrontendBook.getAvailableHours($('#select-date').val());
|
||||
FrontendBook.updateConfirmFrame();
|
||||
FrontendBook.updateServiceDescription($('#select-service').val(), $('#service-description'));
|
||||
|
|
Loading…
Reference in a new issue