Genericize the embed parent setting

Instead of repeating the domain four times, make it a variable on line 2
and use the variable.
This commit is contained in:
Trysdyn Black 2022-09-10 15:52:11 -07:00
parent e06dfb4360
commit 867707a46b

View file

@ -1,3 +1,6 @@
// Embed source domain. This should be the domain(s) of the site using this tool
source_domains = ['localhost']
// Dimensions of each embed, used when initializing the embeds
embed_height = 315;
embed_width = 560;
@ -131,7 +134,7 @@ function setup() {
layout: 'video',
controls: false,
channel: 'jank_science_theater',
parent: ['voidfox.com']
parent: source_domains
}));
embeds.push(new Twitch.Embed('embed1', {
@ -142,7 +145,7 @@ function setup() {
layout: 'video',
controls: false,
channel: 'jank_science_theater',
parent: ['voidfox.com']
parent: source_domains
}));
embeds.push(new Twitch.Embed('embed2', {
@ -153,7 +156,7 @@ function setup() {
layout: 'video',
controls: false,
channel: 'jank_science_theater',
parent: ['voidfox.com']
parent: source_domains
}));
embeds.push(new Twitch.Embed('embed3', {
@ -164,7 +167,7 @@ function setup() {
layout: 'video',
controls: false,
channel: 'jank_science_theater',
parent: ['voidfox.com']
parent: source_domains
}));
// Set up volume slider handler