FitText
=======

Truncates the text nodes of elements to fit inside a container
How to use
----------
### Example:
#### HTML:
#HTML
- Lorem ipsum dolor
- sit amet, consectetur adipisicing
- elit, sed do eiusmod tempor incididunt ut labore et
#### CSS:
#CSS
ul {
list-style: none;
width: 50%;
}
li {
white-space: nowrap;
}
#### JavaScript
#JS
var myFitText = new FitText('container','li > span',{
offset: 20,
fitClass: 'fitted'
});
View the [MooDoc](http://moodocs.net/rpflo/mootools-rpflo/FitText) for usage and examples.