Skip to content

Instantly share code, notes, and snippets.

@givp
Last active April 23, 2018 20:18
Show Gist options
  • Save givp/2320ee150fcebb3c8a7b to your computer and use it in GitHub Desktop.
Save givp/2320ee150fcebb3c8a7b to your computer and use it in GitHub Desktop.
AngularJS Ellipsis Filter
// Simple AngularJS template filter for showing ellipses for strings of a given length
//
// USAGE IN TEMPLATE
// <div>{{ obj.lastname | ellipsis:10 }}</div>
// filter
app.filter('ellipsis', function() {
return function(input, total) {
if (input.length > total) {
return (input.slice(0, total) + "...");
}
return (input);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment