I have multiple titles that are longer than 40 characters. I would like to shorten it to 40 characters and add ... if there are more characters.
I want to do something like this but in angular js:
if ( title.length > 40){
title = title.substring(0, 40) + '...'
}
text-overflow: ellipsis?