preventTextSelectionIfShiftKey method
Implementation
@HostListener('mousedown')
void preventTextSelectionIfShiftKey(MouseEvent e) {
if (e.shiftKey) e.preventDefault();
}
@HostListener('mousedown')
void preventTextSelectionIfShiftKey(MouseEvent e) {
if (e.shiftKey) e.preventDefault();
}