Added the "any provider" option to the booking wizard.

This commit is contained in:
Alex Tselegidis 2015-10-27 22:49:05 +01:00
parent cd58f8c6ae
commit 52692d92f5
1 changed files with 6 additions and 0 deletions

View File

@ -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'));