mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-30 19:52:17 +01:00
Fixed JavaScript error caused by CSS selector
This commit is contained in:
parent
fbf9a55467
commit
fd0a0e1ba6
@ -810,7 +810,7 @@ OC.Contacts = OC.Contacts || {
|
||||
}
|
||||
});
|
||||
|
||||
this.$contactList.on('click', 'label:not[for=select_all]', function(event) {
|
||||
this.$contactList.on('click', 'label:not([for=select_all])', function(event) {
|
||||
var $input = $(this).prev('input');
|
||||
$input.prop('checked', !$input.prop('checked'));
|
||||
return false; // Prevent opening contact
|
||||
|
Loading…
x
Reference in New Issue
Block a user