Avoid unnecessary bind

This commit is contained in:
Tom MacWright
2013-03-07 14:17:31 -05:00
parent fefdecfa67
commit d083b7ea6a

View File

@@ -64,7 +64,7 @@ iD.svg = {
return 'M' + points.map(function(p) {
return p[0] + ',' + p[1];
}).join('L');
}.bind(this)).join('');
}).join('');
return cache[entity.id];
};