angular-middle-ellipses
v1.0.1
Published
Truncate a string by showing an ellipses in the middle
Downloads
2
Maintainers
Readme
angular-middle-ellipses
Truncate a string by showing an ellipses in the middle
Installation
Install angular-middle-ellipses
by running:
$ npm install --save angular-middle-ellipses
Documentation
Add angular-middle-ellipses
to your Angular module dependency list:
var MyApp = angular.module('MyApp', [
require('angular-middle-ellipses')
]);
Make use of the middleEllipses
filter in a template by passing the desired maximum amount of characters as an argument:
{{ 'MyVeryLongString' | middleEllipses:9 }}
MyVe…ring
Support
If you're having any problem, please raise an issue on GitHub and I'll be happy to help.
Tests
Run the test suite by doing:
$ npm test
Contribute
- Issue Tracker: github.com/jviotti/angular-middle-ellipses/issues
- Source Code: github.com/jviotti/angular-middle-ellipses
Before submitting a PR, please make sure that you include tests, and that jshint runs without any warning:
$ npm run lint
License
The project is licensed under the MIT license.