Files
DefinitelyTyped/jquery-truncate-html/jquery-truncate-html-tests.ts
abraaoalves 13d212dfb3 make tests
2016-03-01 21:40:34 -03:00

15 lines
320 B
TypeScript

/// <reference path="./jquery-truncate-html.d.ts" />
function truncateHtmlString(): string {
return $.truncate('<p>Stuff and <i>Nonsense</i></p>', {
length: 13
});
}
function truncateVirtualElement (): JQuery {
return $('<p>Stuff and <i>Nonsense</i></p>').truncate({
length: 13
});
}