mobile debugging

This commit is contained in:
Kyle
2021-05-09 18:45:48 -07:00
committed by GitHub
parent 341a2e8b78
commit 7c09ee860d

View File

@@ -1,6 +1,6 @@
//URL Params //URL Params
var params = new URLSearchParams(window.location.search); var params = new URLSearchParams(window.location.search);
const debugging = params.get('debug') != ''; const debugging = params.get('debug') != null;
console.log('debugging: ' + debugging); console.log('debugging: ' + debugging);
//To save the server from being overloaded? Maybe? //To save the server from being overloaded? Maybe?
function fixUri(input) { function fixUri(input) {