Files
raven-client/ayanova/src/api/aboutinfo.js
2019-06-03 22:28:30 +00:00

21 lines
700 B
JavaScript

export default {
version: "8.0.0-alpha.2019.June.3",
copyright:
"Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved",
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
}
};