Skip to content

Instantly share code, notes, and snippets.

@afonso-praca
Created December 7, 2012 18:33
Show Gist options
  • Save afonso-praca/4235341 to your computer and use it in GitHub Desktop.
Save afonso-praca/4235341 to your computer and use it in GitHub Desktop.
Set max size to a string
getShortName = function(name, size){ return name.length < size ? name : name.substr(0, size) + '...'; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment