Subtract in angularjs

1

I have a question in AngularJS. To sum the values in memory this is all ok, but I am having difficulty subtracting one or more values that are in memory.

            $scope.adicionaratividade = function (atividade) {
                $scope.atividades.push(angular.copy(atividade));
                $scope.total += parseFloat($scope.atividade.tempo);
                delete $scope.atividade;
                $scope.atividadeForm.$setPristine();
            };
            $scope.apagaratividades = function (atividades) {
                $scope.total -= parseFloat(atividades.tempo);
                $scope.atividades = atividades.filter(function (atividade) {
                    if (!atividade.selecionado) return atividade;
                });
            };
    
asked by anonymous 15.06.2017 / 07:30

0 answers