Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
andir committed Oct 24, 2024
1 parent 2106f7b commit 4bb331e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<link rel="preload" href="https://2023.nixcon.org/fonts/Behrensschrift-SH.otf" as="font" type="font/otf" crossorigin>
<style>
body { background-color: black; }
//@font-face {
// font-family: 'Hack';
// src: url('fonts/hack-regular.woff2');
//}
@font-face {
font-family: 'Hack';
src: url('fonts/hack-regular.woff2');
}

@font-face {
font-family: 'oxanium';
Expand Down Expand Up @@ -52,10 +52,10 @@
}));

socket.on("talk", (talk_id) => {
console.log("Received message:", talk_id);
const talk = talks[talk_id];
const animation = new IntroAnimation("logo.svg", talk.title, "" + talk.persons.map((p) => p.public_name));
var animator = new Animator(document.getElementById('canvas'), null, width, height, animation);
console.log("Received message:", talk_id);
const talk = talks[talk_id];
const animation = new IntroAnimation("logo.svg", talk.title, "" + talk.persons.map((p) => p.public_name));
var animator = new Animator(document.getElementById('canvas'), null, width, height, animation);

animator.run().then(() => {
button.disabled = false;
Expand Down

0 comments on commit 4bb331e

Please sign in to comment.