Crude fix for text cutoff bug
This commit is contained in:
parent
653ca02534
commit
f84bc07c86
1 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ export class TimelineElement extends PageElement {
|
|||
super.initialize();
|
||||
|
||||
if (titleToFragment(this.timelineElement.title) === window.location.hash) {
|
||||
this.openMore();
|
||||
setTimeout(this.openMore.bind(this), 100);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -63,7 +63,7 @@ export class TimelineElement extends PageElement {
|
|||
private handleResize() {
|
||||
if (this.isOpen) {
|
||||
this.more.style.height = 'auto';
|
||||
this.openMore();
|
||||
setTimeout(this.openMore.bind(this), 100);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue