Improve error message system and add errors to basic functions

This commit is contained in:
Isaac Bythewood
2013-03-05 21:25:08 +00:00
parent 1538579fe5
commit 37de6ecb93
7 changed files with 46 additions and 26 deletions

View File

@@ -75,6 +75,9 @@ $(window).load(function() {
promise.success(function(pin) {
createBox(pin);
});
promise.error(function() {
message('Problem problem fetching pin data.', 'alert alert-error');
});
});
});
}