Skip to content

Instantly share code, notes, and snippets.

@AllThingsSmitty
Last active November 29, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AllThingsSmitty/0ca5416f26493076a993 to your computer and use it in GitHub Desktop.
Save AllThingsSmitty/0ca5416f26493076a993 to your computer and use it in GitHub Desktop.
Apply ellipsis to the end of content that has more than 300 characters
if (content.length > 300) {
// truncate to a shorter text length
return content.substring(0, 200) + '...';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment