From 57955f2cfebf0e683767505f6526322ab5666c46 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 24 Dec 2017 20:34:04 -0800 Subject: [PATCH] Use the elementSource by default --- js/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/config.js b/js/config.js index 4c47d628..8310b6fe 100644 --- a/js/config.js +++ b/js/config.js @@ -18,6 +18,6 @@ export const skinUrl = config.skinUrl === undefined ? skin : config.skinUrl; export const audioUrl = config.audioUrl === undefined ? audio : config.audioUrl; export const noMarquee = config.noMarquee || false; export const hideAbout = config.hideAbout || false; -export const elementSource = config.elementSource || false; +export const elementSource = config.elementSource || true; export const initialState = config.initialState || undefined; export const sentryDsn = SENTRY_DSN;