mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
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.getAvailableHours($('#select-date').val());
|
||||||
FrontendBook.updateConfirmFrame();
|
FrontendBook.updateConfirmFrame();
|
||||||
FrontendBook.updateServiceDescription($('#select-service').val(), $('#service-description'));
|
FrontendBook.updateServiceDescription($('#select-service').val(), $('#service-description'));
|
||||||
|
|
Loading…
Reference in a new issue