Tagged Questions
2
votes
2answers
432 views
(javascript) why do i need to use a wrap function for event handlers?
I'm trying to understand why in the following code I need Dragger.prototype.wrap and why I can't just use the event handling methods directly:
function Dragger(id) {
this.isMouseDown = false;
...