dibari / angular-ellipsis

Angular directive to truncate multi-line text to visible height

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Short text is not shown

liadlivnat opened this issue · comments

look at the following example:
for short text like "text" i get only "read more"

this is the html

 <ul>
            <li ng-repeat="insight in data.insights | limitTo:5 track by $index" ><i style="margin-bottom: 3px;" class="icon icons-less-info"></i>
              <p class="insight-text" data-ng-bind="insight.insight" data-ellipsis data-ellipsis-append="read more"
                   ng-click="getFullInsights({insightData:insight})"></p>
            </li>
        </ul>

the css has min-width:1024px;

capture