remove some console.logs
This commit is contained in:
parent
023b8c370a
commit
84fefbaa14
@ -379,7 +379,6 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
selectTab(tab) {
|
selectTab(tab) {
|
||||||
console.log('selected tab:', tab);
|
|
||||||
this.selectedTab = tab;
|
this.selectedTab = tab;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -312,7 +312,6 @@ export default {
|
|||||||
this.eventBus.sendToTunnel('get-aard-timing');
|
this.eventBus.sendToTunnel('get-aard-timing');
|
||||||
},
|
},
|
||||||
handleConfigBroadcast(data) {
|
handleConfigBroadcast(data) {
|
||||||
console.log('GOT CONFIG BROADCAST!', data);
|
|
||||||
if (data.type === 'aard-performance-data') {
|
if (data.type === 'aard-performance-data') {
|
||||||
this.performanceData = data.performanceData;
|
this.performanceData = data.performanceData;
|
||||||
this.$nextTick( () => this.$forceUpdate() );
|
this.$nextTick( () => this.$forceUpdate() );
|
||||||
|
@ -194,7 +194,6 @@ class ActionHandler {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (this.preventAction(event)) {
|
if (this.preventAction(event)) {
|
||||||
console.log('action is being prevented!');
|
|
||||||
this.logger.log('info', 'keyboard', "[ActionHandler::handleKeyup] we are in a text box or something. Doing nothing.");
|
this.logger.log('info', 'keyboard', "[ActionHandler::handleKeyup] we are in a text box or something. Doing nothing.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -814,8 +814,6 @@ class ArDetector {
|
|||||||
async frameCheck(){
|
async frameCheck(){
|
||||||
this.logger.log('info', 'arDetect_verbose', `%c[ArDetect::processAr] <@${this.arid}> Starting frame check.`);
|
this.logger.log('info', 'arDetect_verbose', `%c[ArDetect::processAr] <@${this.arid}> Starting frame check.`);
|
||||||
|
|
||||||
console.log('.');
|
|
||||||
|
|
||||||
const timerResults = {
|
const timerResults = {
|
||||||
imageDrawTime: null,
|
imageDrawTime: null,
|
||||||
blackFrameDrawTime: null,
|
blackFrameDrawTime: null,
|
||||||
|
@ -16,105 +16,105 @@ export default class FontLoader {
|
|||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-thin-italic.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-thin-italic.woff2')} format('woff2');
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-extralight.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-extralight.woff2')} format('woff2');
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-extralight-italic.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-extralight-italic.woff2')} format('woff2');
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-light.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-light.woff2')} format('woff2');
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-light-italic.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-light-italic.woff2')} format('woff2');
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-regular.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-regular.woff2')} format('woff2');
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-italic.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-italic.woff2')} format('woff2');
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-semibold.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-semibold.woff2')} format('woff2');
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-semibold-italic.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-semibold-italic.woff2')} format('woff2');
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-bold.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-bold.woff2')} format('woff2');
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass';
|
font-family: 'Overpass';
|
||||||
src: ${url('res/fonts/overpass-webfont/overpass-bold-italic.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-webfont/overpass-bold-italic.woff2')} format('woff2');
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass mono';
|
font-family: 'Overpass mono';
|
||||||
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-light.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-light.woff2')} format('woff2');
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass mono';
|
font-family: 'Overpass mono';
|
||||||
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-regular.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-regular.woff2')} format('woff2');
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass mono';
|
font-family: 'Overpass mono';
|
||||||
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-semibold.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-semibold.woff2')} format('woff2');
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Overpass mono';
|
font-family: 'Overpass mono';
|
||||||
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-bold.woff2')} format('woff2');
|
src: ${url('res/fonts/overpass-mono-webfont/overpass-mono-bold.woff2')} format('woff2');
|
||||||
@ -124,6 +124,5 @@ export default class FontLoader {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.head.appendChild(fontsStyleElement);
|
document.head.appendChild(fontsStyleElement);
|
||||||
console.log("font loaded!")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -640,7 +640,6 @@ class PlayerData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private markElement(data: {parentIndex: number, enable: boolean}) {
|
private markElement(data: {parentIndex: number, enable: boolean}) {
|
||||||
console.log('mark element: got request to do border around this:', data);
|
|
||||||
this.elementStack[data.parentIndex].element.style.outline = data.enable ? '5px dashed #fa6' : null;
|
this.elementStack[data.parentIndex].element.style.outline = data.enable ? '5px dashed #fa6' : null;
|
||||||
this.elementStack[data.parentIndex].element.style.filter = data.enable ? 'sepia(1) brightness(2) contrast(0.5)' : null;
|
this.elementStack[data.parentIndex].element.style.filter = data.enable ? 'sepia(1) brightness(2) contrast(0.5)' : null;
|
||||||
}
|
}
|
||||||
|
@ -212,14 +212,12 @@ class UwUi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async showLogger() {
|
async showLogger() {
|
||||||
console.log("show logger?")
|
|
||||||
if (!this.loggerUiInitiated) {
|
if (!this.loggerUiInitiated) {
|
||||||
await this.initLoggerUi();
|
await this.initLoggerUi();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
console.log("will show logger")
|
|
||||||
this.vuexStore.dispatch('uw-show-logger');
|
this.vuexStore.dispatch('uw-show-logger');
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('Failed to dispatch vuex store', e)
|
console.error('Failed to dispatch vuex store', e)
|
||||||
|
Loading…
Reference in New Issue
Block a user