Skip to content
Snippets Groups Projects
Commit 3a061584 authored by Xiao Gui's avatar Xiao Gui Committed by xgui3783
Browse files

fix FF not able to select template/parcellation

parent df8bd41e
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,8 @@ export class DropdownComponent{
@HostListener('document:click',['$event'])
close(event:MouseEvent){
const contains = this.dropdownToggle.nativeElement.contains(event.srcElement)
/* FF does not implement event.srcElement so use event.originalTarget to polyfill for FF */
const contains = this.dropdownToggle.nativeElement.contains(event.srcElement) || this.dropdownToggle.nativeElement.contains((event as any).originalTarget)
if(contains)
this.openState = !this.openState
else
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment