Hi Gabriel,

Your code returns the full array if the length === 0. 
adapt it a bit like this:

            $scope.$watch('searchLength', function(len) {
                $scope.searchResults = [];
                if (len === 0) {
                    //done!
                    return;
                }
                for (var i = 0; i < $scope.names.length; i++) {
                    if ($scope.names[i].substring(0, $scope.searchLength).
toLowerCase() === $scope.searchName.toLowerCase()) {
                        $scope.searchResults.push($scope.names[i]);
                    }
                }
            })


with kind regards
Sander

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to