Note: I also posted this question on the AngularJS mailing list here: https://groups.google.com/forum/#!topic/angular/UC8_pZsdn2U
Hi All,
I\'m building my fi
You should take a look at the $q service, you can do:
promise.then(callback);
From 1.1.3, you can access promises with $then, for exemple resource.query().$then(callback);
$then
resource.query().$then(callback);