This commit is contained in:
2019-05-22 00:13:30 +00:00
parent a56aa13613
commit 0868def995
6 changed files with 47 additions and 17 deletions

View File

@@ -1,5 +1,24 @@
import store from "../store";
export default {
version: "8.0.0-alpha.5",
copyright:
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved"
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
userName: store.state.userName,
browser: {
platform: window.navigator.platform,
userAgent: window.navigator.userAgent,
language: window.navigator.language,
oscpu: window.navigator.oscpu,
maxTouchPoints: window.navigator.maxTouchPoints,
webdriver: window.navigator.webdriver,
vendor: window.navigator.vendor,
availWidth: window.screen.availWidth,
availHeight: window.screen.availHeight,
width: window.screen.width,
height: window.screen.height,
devicePixelRatio: window.devicePixelRatio,
pixelDepth: window.screen.pixelDepth
}
};
TODO: SHOw this shit