James 'Eddy' Edwards

Results 1 comments of James 'Eddy' Edwards

I was able to fix this issue by tweaking the following line 1813: `if (event.currentTarget === this.element[0]) return;` becomes `if (event.currentTarget !== this.element[0]) return;` My understanding is that this check...