removed alert('failure')

using alerts (especially with no information beyond just 'it failed') is terrible user experience
This commit is contained in:
Connor Turland 2014-06-25 10:24:24 -04:00
parent e5ba207711
commit 24280e82fa

View file

@ -128,7 +128,7 @@ function fetchRelatives(node) {
} }
}, },
error: function () { error: function () {
alert('failure'); console.log('failed to recenter');
} }
}); });
} }
@ -392,4 +392,4 @@ function cancelMapCreate(id) {
form.find('.mapCommonsIcon').addClass('selected'); form.find('.mapCommonsIcon').addClass('selected');
return false; return false;
} }