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

chore: build

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