0

I am using angular bacon in my project. I am using $scope.digestObservables(observables) where observables is the key names of multiple observables. I need to know when all the observables are loaded.

ranjan
  • 351
  • 1
  • 5
  • 16

1 Answers1

0

I have never used this function myself, but have you tried this:

Bacon.combineTemplate(observables)
    .onValue(function()){
        $scope.digestObservables(observables);
    });
JNYRanger
  • 6,829
  • 12
  • 53
  • 81
kristw
  • 26
  • 3