Posts by Henrique Sosa • 1 point
1 post
-
0
votes1
answer65
viewsA: Update ng-repeat when receiving Firebase values
To update the note array, you will need to run the $apply Angular function. $scope.$apply(function () { $scope.notas.push(child.val()); });