Fix inadverted .remove call. Fixes #686

This commit is contained in:
Tom MacWright
2013-02-08 13:40:57 -05:00
parent 2e3580954e
commit 8d8ec84316

View File

@@ -112,7 +112,7 @@ iD.Background = function() {
.each(function() {
var tile = this;
window.setTimeout(function() {
tile.remove();
tile.parentNode.removeChild(tile);
});
});