rviscomi / trunk8

jQuery Truncation Plugin -- THIS PROJECT IS NO LONGER MAINTAINED
MIT License
703 stars 95 forks source link

Fixed-Width Truncation #4

Closed rviscomi closed 12 years ago

rviscomi commented 12 years ago

Supplying an integer to the "width" setting should truncate all but that number of characters. For example:

// <span class="too-long">Example</span>
$('.too-long').trunk8({width: 3}); // Exa...

Instead, the width setting is incorrectly used as the number of characters to truncate. For example:

// <span class="too-long">Example</span>
$('.too-long').trunk8({width: 3}); // Exam...
rviscomi commented 12 years ago

Fixed in 1.2