mirror of
https://github.com/pysunday/sdenv.git
synced 2025-04-12 03:37:16 +08:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
module.exports = (sdenv) => {
|
|
const window = sdenv.memory.sdWindow;
|
|
|
|
[window.VisualViewport, window.visualViewport] = sdenv.tools.getNativeProto('VisualViewport', 'visualViewport', {
|
|
height: 904,
|
|
offsetLeft: 0,
|
|
offsetTop: 0,
|
|
onresize: null,
|
|
onscroll: null,
|
|
pageLeft: 0,
|
|
pageTop: 0,
|
|
scale: 1,
|
|
width: 1066,
|
|
});
|
|
}
|