mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-29 11:23:10 +03:00
Correct post-filtering selection for services (revised).
This commit is contained in:
parent
483e2348a1
commit
dcda4b9982
1 changed files with 1 additions and 1 deletions
|
@ -375,7 +375,7 @@
|
||||||
$('#filter-services .selected').removeClass('selected');
|
$('#filter-services .selected').removeClass('selected');
|
||||||
|
|
||||||
$('#filter-services .service-row').each(function() {
|
$('#filter-services .service-row').each(function() {
|
||||||
if ($(this).attr('data-id') === id) {
|
if ($(this).attr('data-id') == id) {
|
||||||
$(this).addClass('selected');
|
$(this).addClass('selected');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue