|
@@ -466,6 +466,8 @@ export default {
|
|
action: "答题页面dimension",
|
|
action: "答题页面dimension",
|
|
scrollX: window.scrollX,
|
|
scrollX: window.scrollX,
|
|
scrollY: window.scrollY,
|
|
scrollY: window.scrollY,
|
|
|
|
+ screenY: window.screen.availHeight,
|
|
|
|
+ screenX: window.screen.availWidth,
|
|
clientHeight: document.documentElement.clientHeight,
|
|
clientHeight: document.documentElement.clientHeight,
|
|
clientWidth: document.documentElement.clientWidth,
|
|
clientWidth: document.documentElement.clientWidth,
|
|
windowHeight: window.outerHeight,
|
|
windowHeight: window.outerHeight,
|
|
@@ -474,6 +476,10 @@ export default {
|
|
"dimesion" +
|
|
"dimesion" +
|
|
(document.documentElement.clientHeight === window.outerHeight &&
|
|
(document.documentElement.clientHeight === window.outerHeight &&
|
|
document.documentElement.clientWidth === window.outerWidth),
|
|
document.documentElement.clientWidth === window.outerWidth),
|
|
|
|
+ equal2:
|
|
|
|
+ "dimesion2" +
|
|
|
|
+ (window.screen.availHeight === window.outerHeight &&
|
|
|
|
+ window.screen.availWidth === window.outerWidth),
|
|
});
|
|
});
|
|
|
|
|
|
exam.WEIXIN_ANSWER_ENABLED = weixinAnswerEnabled;
|
|
exam.WEIXIN_ANSWER_ENABLED = weixinAnswerEnabled;
|