Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bgourlie/ellipsize

Truncates and adds ellipses to multiline text that overflows its container.
https://github.com/bgourlie/ellipsize

Last synced: about 1 month ago
JSON representation

Truncates and adds ellipses to multiline text that overflows its container.

Awesome Lists containing this project

README

        

ellipsize
=========

Truncates and adds ellipses to multiline text that overflows its container.

Usage
-----

```dart
import 'dart:html';
import 'package:ellipsize/ellipsize.dart';

main() {
var container = query("#hasLotsOfText");
new Ellipsize(container);
}
```