Prepend the any-provider option in the booking page
This commit is contained in:
parent
1bc02e11c0
commit
95fbbeec27
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ window.FrontendBook = window.FrontendBook || {};
|
||||||
|
|
||||||
// Add the "Any Provider" entry.
|
// Add the "Any Provider" entry.
|
||||||
if ($('#select-provider option').length >= 1 && GlobalVariables.displayAnyProvider === '1') {
|
if ($('#select-provider option').length >= 1 && GlobalVariables.displayAnyProvider === '1') {
|
||||||
$('#select-provider').append(new Option('- ' + EALang.any_provider + ' -', 'any-provider', true, true));
|
$('#select-provider').prepend(new Option('- ' + EALang.any_provider + ' -', 'any-provider', true, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
FrontendBookApi.getUnavailableDates($('#select-provider').val(), $(this).val(),
|
FrontendBookApi.getUnavailableDates($('#select-provider').val(), $(this).val(),
|
||||||
|
|
Loading…
Reference in a new issue