I\'ve been trying to wait for a couple of promises with Angular\'s $q but there seems to be no option to \'wait for all even when a promis is rejected\'. I\'ve created an exampl
just use finally
$q.all(tasks).finally(function() { // do stuff });