Hey there!
Say, I've got the following code:
Using the XF.proxy (which if I remember correctly will be deprecated in the future), I bind the event to a function.
Now here's my question: how do I remove that event listener again? Using removeEventListener for example did not work for me..
Even replacing the XF.proxy bit with something like this.actionEnd() didn't work for me..
Thanks for any help!
Say, I've got the following code:
JavaScript:
document.addEventListener('mouseup', XF.proxy(this, 'actionEnd'));
Using the XF.proxy (which if I remember correctly will be deprecated in the future), I bind the event to a function.
Now here's my question: how do I remove that event listener again? Using removeEventListener for example did not work for me..
JavaScript:
document.removeEventListener('mouseup', XF.proxy(this, 'actionEnd'));
Even replacing the XF.proxy bit with something like this.actionEnd() didn't work for me..
Thanks for any help!