[ACS-4051] Copy to clipboard button is now accessible through the keyboard enter earlier which was only accessible through mouse click (#8119)

* 880196 CSV issue addressed

* unit test cases for clipboard directive
This commit is contained in:
jatin2008
2023-01-13 22:48:01 +05:30
committed by GitHub
parent db38ccda7a
commit 067d4e9369
2 changed files with 23 additions and 0 deletions

View File

@@ -46,6 +46,12 @@ export class ClipboardDirective {
event.stopPropagation();
this.copyToClipboard();
}
@HostListener('window:keydown.enter', ['$event'])
handleKeyDown(event: KeyboardEvent){
event.preventDefault();
event.stopPropagation();
this.copyToClipboard();
}
@HostListener('mouseenter')
showTooltip() {