diff --git a/_includes/developers_cards.html b/_includes/developers_cards.html
index d14da58..34ce096 100644
--- a/_includes/developers_cards.html
+++ b/_includes/developers_cards.html
@@ -1,3 +1,8 @@
+
+
There was a problem fetching the developers list. Please reload the page to try again.
+
+
+
@@ -109,7 +114,10 @@
$('#developers').append(paginator);
})
.fail(function(error) {
- console.log(error);
+ $('#meetup-developers-error')
+ .removeClass('hidden')
+ .find('.output')
+ .text('' + error);
});
function createDevCard(dev) {
diff --git a/_includes/meetup_cards.html b/_includes/meetup_cards.html
index b2f502e..65086a5 100644
--- a/_includes/meetup_cards.html
+++ b/_includes/meetup_cards.html
@@ -1,3 +1,8 @@
+
+
There was a problem fetching the Events. Please reload the page to try again.
+
+
+
@@ -40,7 +45,10 @@
})
})
.fail(function(error) {
- console.log(error);
+ $('#meetup-events-error')
+ .removeClass('hidden')
+ .find('.output')
+ .text('' + error);
});
function createEventCard(event) {