Remove pug #3

Manually merged
tlater merged 2 commits from tlater/remove-pug into master 2021-04-11 03:12:04 +01:00
Showing only changes of commit 86fa9330f8 - Show all commits

View file

@ -24,10 +24,10 @@ class Typer {
* blinking for after the text * blinking for after the text
* finishes typing. * finishes typing.
*/ */
constructor(element: HTMLElement, blink: number, blink_timeout: number) { constructor(element: JQuery<HTMLElement>, blink: number, blink_timeout: number) {
// Retrieve the current content and wipe it. We also make the // Retrieve the current content and wipe it. We also make the
// element visible if it was hidden. // element visible if it was hidden.
this.element = $(element); this.element = element;
this.text = this.element.html(); this.text = this.element.html();
this.element.html(""); this.element.html("");
this.element.css("visibility", "visible"); this.element.css("visibility", "visible");
@ -114,6 +114,6 @@ class Typer {
} }
jQuery(($) => { jQuery(($) => {
const typer = new Typer($(".head-line .typed").get(0), 500, 3000); const typer = new Typer($(".head-line .typed").first(), 500, 3000);
typer.type(); typer.type();
}); });