2017-11-13 01:23:39 -05:00
|
|
|
/* eslint strict: off */
|
|
|
|
'use strict';
|
|
|
|
(() => {
|
2017-11-14 04:02:34 -05:00
|
|
|
// Don't run on certain sub-domains.
|
2017-12-01 15:31:59 -05:00
|
|
|
if ( /^(?:blog|player|im|chatdepot|tmi|api|)\./.test(location.hostname) )
|
2017-11-13 01:23:39 -05:00
|
|
|
return;
|
|
|
|
|
2017-11-14 04:02:34 -05:00
|
|
|
const DEBUG = localStorage.ffzDebugMode == 'true' && document.body.classList.contains('ffz-dev') && ! window.Ember,
|
2017-11-13 01:23:39 -05:00
|
|
|
SERVER = DEBUG ? '//localhost:8000' : '//cdn.frankerfacez.com',
|
|
|
|
FLAVOR = window.Ember ? 'umbral' : 'avalon',
|
|
|
|
|
|
|
|
script = document.createElement('script');
|
|
|
|
|
|
|
|
script.id = 'ffz-script';
|
|
|
|
script.src = `${SERVER}/script/${FLAVOR}.js?_=${Date.now()}`;
|
|
|
|
document.head.appendChild(script);
|
|
|
|
})();
|