Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
Chandler Swift | 9100cd6ced | ||
Chandler Swift | 4f27723920 |
2
go.mod
2
go.mod
|
@ -1,5 +1,5 @@
|
||||||
module git.chandlerswift.com/chandlerswift/bannergen
|
module git.chandlerswift.com/chandlerswift/bannergen
|
||||||
|
|
||||||
go 1.23.4
|
go 1.23.0
|
||||||
|
|
||||||
require golang.org/x/image v0.23.0
|
require golang.org/x/image v0.23.0
|
||||||
|
|
|
@ -70,10 +70,10 @@
|
||||||
const competition = event.competitions[0];
|
const competition = event.competitions[0];
|
||||||
console.log(competition);
|
console.log(competition);
|
||||||
const params = new URLSearchParams({
|
const params = new URLSearchParams({
|
||||||
left_logo: competition.competitors[0].team.logo,
|
left_logo: competition.competitors[1].team.logo,
|
||||||
right_logo: competition.competitors[1].team.logo,
|
right_logo: competition.competitors[0].team.logo,
|
||||||
left_color: competition.competitors[0].team.color,
|
left_color: competition.competitors[1].team.color,
|
||||||
right_color: competition.competitors[1].team.color,
|
right_color: competition.competitors[0].team.color,
|
||||||
});
|
});
|
||||||
|
|
||||||
const a = document.createElement('a');
|
const a = document.createElement('a');
|
||||||
|
|
Loading…
Reference in a new issue