Skip to content

Instantly share code, notes, and snippets.

@mrded
Last active August 29, 2015 13:56
Show Gist options
  • Save mrded/8822565 to your computer and use it in GitHub Desktop.
Save mrded/8822565 to your computer and use it in GitHub Desktop.
AngularJS: search
// Search.
var found = $filter('filter')($scope.suggestions, {uid: suggestion.uid}, true);
var found = $filter('getById')($scope.suggestions, fish_id);
// Find and delete.
$scope.suggestions.splice( $scope.suggestions.indexOf(suggestion), 1 );
// Get half of items.
$scope.suggestions.slice(0, $scope.suggestions.length / 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment