ultrawidify/js/conf/Debug.js
Tamius Han 44828b3ecf Tried to fix aspect ratio autodetection on netflix but ended up watching the entire Altered Carbon instead.
Just kidding, I also fixed the autodetection on netflix. And the bit where key for netflix in SitesConf.js was wrong.
2018-03-18 15:14:57 +01:00

27 lines
525 B
JavaScript

// Set prod to true when releasing
_prod = true;
// _prod = false;
Debug = {
debug: true,
keyboard: true,
debugResizer: true,
debugArDetect: true,
debugStorage: true,
showArDetectCanvas: true,
flushStoredSettings: false,
playerDetectDebug: false,
arDetect: {
edgeDetect: true
}
}
if(_prod){
for(var key in Debug){
Debug[key] = false;
}
}
if(Debug.debug)
console.log("Guess we're debugging ultrawidify then. Debug.js must always load first, and others must follow.\nLoading: Debug.js");