Skip to content

Simple directive for truncating text in AngularJS apps and toggling the hidden parts of the truncated texts.

License

Notifications You must be signed in to change notification settings

alv-ch-ng/text-truncate

 
 

Repository files navigation

alv-ch-ng.text-truncate Build Status Coverage Status Code Climate

This is a simple, but fully functional, directive for truncating text in angularjs apps. This directive not only truncates your text, but also permits toggling the hidden part of the truncated text.

It's a fork from the original directive ng-text-truncate.

Usage Instructions

  1. Include the JS file

Bower

$ bower install alv-ch-ng.text-truncate
<script src="angular.min.js"></script>
...
<script src="alv-ch-ng.text-truncate.js"></script>

As usual, include this file after the inclusion of the angular.min.js file.

  1. Import alv-ch-ng.text-truncate in your app

angular.module( "TestApp", [ "alv-ch-ng.text-truncate" ] );
  1. Assign a text to some variable

$scope.longText = "Lorem ipsum dolor sit amet, and a possibly long remaining text.";
  1. Apply the directive to the element where you intend to put your text

Use the ng-text-truncate attribute to pass the variable holding your text. In the ng-tt-chars-threshold attribute you should indicate the maximum number of chars to be displayed before truncation. That is, any string bigger than ng-tt-chars-threshold will be truncated.

<p ng-text-truncate="longText"
   ng-tt-chars-threshold="40"></p>
  1. Features

By using this directive you can:

  • Truncate your text based on the number of chars to be displayed;
  • Truncate your text based on the number of words to be displayed;
  • Toggle the hidden part of truncated text visible or not;
  • Customize the text of the toggling elements (the defaults are "More" and "Less");
  • If you want/need, you can just truncate the text (i.e., ommit the toggling elements);
  • Take a ride in Bootstrap's styles for the toggling elements;
  • Customize the appearance of the toggling elements by means of a custom CSS class (for the case you don't like Bootstrap's defaults or if you are not using Bootstrap).

About

Simple directive for truncating text in AngularJS apps and toggling the hidden parts of the truncated texts.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 80.4%
  • JavaScript 13.4%
  • HTML 6.2%