mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
Select the any-provider option by default.
This commit is contained in:
parent
dfdbea6214
commit
55a4665c7d
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'));
|
$('#select-provider').append(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