2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

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);
});
});