Skip to content

Commit 2b9c0f4

Browse files
committed
Bugfix in deleteAll
1 parent 6a38244 commit 2b9c0f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/events/EventDispatcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ var EventDispatcher = new Class({
212212
{
213213
for (var binding in this.bindings)
214214
{
215-
binding.destroy();
215+
this.bindings[binding].destroy();
216216
}
217217

218218
this.bindings = {};

0 commit comments

Comments
 (0)