Skip to content

Commit

Permalink
update js-lib version
Browse files Browse the repository at this point in the history
  • Loading branch information
domsteinbach committed Aug 30, 2023
1 parent f53545f commit e6a6d48
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export class TextValueHtmlLinkDirective {
*/
@HostListener('click', ['$event'])
onClick(event: MouseEvent) {
console.log('TextValueHtmlLinkDirective.onClick()');
const targetElement = event.target as HTMLAnchorElement;
if (
!targetElement ||
Expand Down Expand Up @@ -53,6 +54,7 @@ export class TextValueHtmlLinkDirective {
*/
@HostListener('mousedown', ['$event'])
onMouseDown(event: MouseEvent) {
console.log('TextValueHtmlLinkDirective.onMouseDown()');
const targetElement = event.target as HTMLAnchorElement;

if (!targetElement || targetElement.nodeName.toLowerCase() !== 'a') {
Expand Down

0 comments on commit e6a6d48

Please sign in to comment.