提交 214b2331 编写于 作者: Q qiang

chore: build

上级 7a6df89f
......@@ -19462,6 +19462,10 @@ var serviceContext = (function () {
beginPath () {
this.path = [];
this.subpath = [];
this.path.push({
method: "beginPath",
data: []
});
}
moveTo (x, y) {
......
......@@ -672,7 +672,7 @@ function addSafeAreaInsets (result) {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
bottom: Math.abs(result.screenHeight - safeArea.bottom)
};
}
}
......
......@@ -672,7 +672,7 @@ function addSafeAreaInsets (result) {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
bottom: Math.abs(result.screenHeight - safeArea.bottom)
};
}
}
......
......@@ -672,7 +672,7 @@ function addSafeAreaInsets (result) {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
bottom: Math.abs(result.screenHeight - safeArea.bottom)
};
}
}
......
......@@ -672,7 +672,7 @@ function addSafeAreaInsets (result) {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
bottom: Math.abs(result.screenHeight - safeArea.bottom)
};
}
}
......
......@@ -672,7 +672,7 @@ function addSafeAreaInsets (result) {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
bottom: Math.abs(result.screenHeight - safeArea.bottom)
};
}
}
......
......@@ -567,7 +567,7 @@ function addSafeAreaInsets (result) {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
bottom: Math.abs(result.screenHeight - safeArea.bottom)
};
}
}
......
......@@ -372,7 +372,7 @@ export class CanvasContext {
this.path = []
this.subpath = []
this.path.push({
method: "beginPath",
method: 'beginPath',
data: []
})
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册