I’m working on a Javascript class based on the Prototype library. This class needs to observe an event to perform a drag operation (the current drag-drop controls aren’t right for this situation), but I’m having problems making it stop observing the events.
Here’s a sample that causes this problem:
var TestClass = Class.create({
initialize: function(element) {
this.element = element;
Event.observe(element, 'mousedown', function() {
Event.observe(window, 'mousemove', this.updateDrag.bind(this));
Event.observe(window, 'mouseup', this.stopDrag.bind(this));
});
},
updateDrag: function(event) {
var x = Event.pointerX(event);
var y = Event.pointerY(event);
this.element.style.top = y + 'px';
this.element.style.left = x + 'px';
},
stopDrag: function(event) {
console.log("stopping drag");
Event.stopObserving(window, 'mousemove', this.updateDrag.bind(this));
Event.stopObserving(window, 'mouseup', this.stopDrag.bind(this));
}
});
Without .bind(this) then this.element is undefined, but with it the events don’t stop being observed (the console output does occur though).
bindreturns a new function reference every time you call it (that’s its job 🙂 ), andstopObservingwill only unhook the handler if the function reference is an===match.To fix this, remember the event handler you bound as a property and then use that property with
stopObserving. Or, if you’re in charge of that element, you can unhook all handlers for themousemoveandmouseupevents by simply leaving off the third parameter. (See the linked docs for more about leaving off parameters tostopObserving).So either:
Or just
But note that the latter removes all handlers for those events on that element (well, the ones hooked up via Prototype).
Off-topic, but note that there’s a bug in your
initializefunction: It’s usingthisin the handler formousedown, but not ensuring thatthisis set to what it should be set to. You’ll need to bind that anonymous function, or use a variable ininitializeto take advantage of the fact that that anonymous function is a closure.So either use bind again:
Or use the fact you’re defining a closure anyway: