Unbinds an event listener previously bound with up.on()
.
Let's say you are listing to clicks on .button
elements:
var listener = function() { ... }
up.on('click', '.button', listener)
You can stop listening to these events like this:
up.off('click', '.button', listener)