mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-17 01:31:25 +01:00
add back missing select function
This commit is contained in:
parent
75c05a4a85
commit
4ccd9501a8
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user