fix typo: iterate over imagery blacklist

see https://github.com/openstreetmap/iD/issues/3858#issuecomment-282130145
This commit is contained in:
Martin Raifer
2017-02-24 13:45:02 +01:00
committed by GitHub
parent 9a62015b37
commit 224059bdee
+1 -1
View File
@@ -135,7 +135,7 @@ export function rendererBackground(context) {
tested = 0,
regex, i;
for (i = 0; i < blacklists; i++) {
for (i = 0; i < blacklists.length; i++) {
try {
regex = new RegExp(blacklists[i]);
fail = regex.test(d.template);