Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ export class LineTruncationDirective
setTimeout(() => {
// Recursively call the truncate itself if Client Height is not ready
if (element.clientHeight > 0) {
// backup original element before truncation
this.elementClone = element.cloneNode(true);
const contentHeight = getContentHeight(element);
const lineHeight = getLineHeight(element);
const targetHeight = this.lines * lineHeight;
Expand Down