Hi,
I'm currently using:
bean.on(element, 'click', '[my-selector]', myHandler)
But I cannot use:
bean.off(element, 'click', '[my-selector]', myHandler)
Since according to the documentation bean.off only accepts this arguments:
off(element[, eventType[, handler ]])
In fact, my event is not removed and then when bean.on executes again, is added multiple times.
It makes sense to me that if bean.on allows for selectors to be used, then bean.off should too, right?
Thanks!
Hi,
I'm currently using:
But I cannot use:
Since according to the documentation
bean.offonly accepts this arguments:In fact, my event is not removed and then when
bean.onexecutes again, is added multiple times.It makes sense to me that if
bean.onallows for selectors to be used, thenbean.offshould too, right?Thanks!