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:
parent
e06dfb4360
commit
867707a46b
1 changed files with 7 additions and 4 deletions
11
js/live.js
11
js/live.js
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue