提交 18d36cd2 编写于 作者: Q qiang

build mp-weixin

上级 1c72eb11
...@@ -19,7 +19,7 @@ function hasOwn (obj, key) { ...@@ -19,7 +19,7 @@ function hasOwn (obj, key) {
return hasOwnProperty.call(obj, key) return hasOwnProperty.call(obj, key)
} }
function noop () { } function noop () {}
/** /**
* Create a cached version of a pure function. * Create a cached version of a pure function.
...@@ -385,11 +385,28 @@ var previewImage = { ...@@ -385,11 +385,28 @@ var previewImage = {
} }
}; };
function addSafeAreaInsets (result) {
if (result.safeArea) {
const safeArea = result.safeArea;
result.safeAreaInsets = {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.windowHeight - safeArea.bottom
};
}
}
const protocols = { const protocols = {
previewImage previewImage,
getSystemInfo: {
returnValue: addSafeAreaInsets
},
getSystemInfoSync: {
returnValue: addSafeAreaInsets
}
}; };
const todos = [ const todos = [
'vibrate' 'vibrate'
]; ];
const canIUses = []; const canIUses = [];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册