Tagged Questions
2
votes
2answers
431 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;
...
0
votes
1answer
394 views
(javascript) what is the wrap function used for regarding event handlers?
I'm trying to understand why people use a wrap function for my event handlers. For example:
Example.prototype.wrap = function(obj, method) {
return function(event) {
obj[method](event);
}
...