FIX: eslint deprecations

This commit is contained in:
Robin Ward
2015-08-13 15:14:08 -04:00
parent 946e34f65c
commit b0541500b4
23 changed files with 59 additions and 70 deletions

View File

@ -93,8 +93,8 @@ _.each(clickBindings, function(selector, binding) {
ok(true, selector + " was clicked");
});
_.each(bindings, function(binding) {
testMouseTrap.trigger(binding);
_.each(bindings, function(b) {
testMouseTrap.trigger(b);
}, this);
});
});