I have a text that describes a certain product, this description will serve as a preview, the ellipsis marks that the text continues, I am using angular
<p ng-bind-html="service.description | limitTo:150 "></p>
This snippet of the code limits the text perfectly, I would like to know how I insert the ellipsis at the end of it. Thank you for your attention!