mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
add back missing select function
This commit is contained in:
@@ -425,6 +425,11 @@
|
||||
selectAll(true);
|
||||
};
|
||||
|
||||
$scope.select = function ($event) {
|
||||
var checkbox = $($event.currentTarget).closest('tr').find('input[name="cipherSelection"]');
|
||||
checkbox.prop('checked', !checkbox.prop('checked'));
|
||||
};
|
||||
|
||||
function distinct(value, index, self) {
|
||||
return self.indexOf(value) === index;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user