@dolphinweex/weex-vue-render 0.2.71 → 0.2.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +8 -6
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -3061,7 +3061,9 @@ var scaleStyles = [
|
|
|
3061
3061
|
'min-height',
|
|
3062
3062
|
'minHeight',
|
|
3063
3063
|
'max-height',
|
|
3064
|
-
'maxHeight'
|
|
3064
|
+
'maxHeight',
|
|
3065
|
+
'transform-origin',
|
|
3066
|
+
'transformOrigin',
|
|
3065
3067
|
];
|
|
3066
3068
|
|
|
3067
3069
|
var vendorReg = /webkit|moz/i;
|
|
@@ -5734,7 +5736,7 @@ function getImage(weex) {
|
|
|
5734
5736
|
const params = {
|
|
5735
5737
|
operation: "saveImageToPhotosAlbum",
|
|
5736
5738
|
params: {
|
|
5737
|
-
src: this.
|
|
5739
|
+
src: this.src,
|
|
5738
5740
|
},
|
|
5739
5741
|
};
|
|
5740
5742
|
weex.requireModule("bridgeModule").commandInterface(
|
|
@@ -12259,7 +12261,7 @@ return weex;
|
|
|
12259
12261
|
// 一多适配不同宽高比例的屏幕,使用resetViewport也能适配宽度,
|
|
12260
12262
|
// 但项目存在没有使用rem的元素,且页面高度重置方法也因项目而异。
|
|
12261
12263
|
// 后续联合所有页面统一做了适配后可删除此段代码
|
|
12262
|
-
const globalEventForReload = weex.requireModule('globalEvent')
|
|
12263
|
-
globalEventForReload.addEventListener("WebReload",()=>{
|
|
12264
|
-
|
|
12265
|
-
})
|
|
12264
|
+
const globalEventForReload = weex.requireModule('globalEvent')
|
|
12265
|
+
globalEventForReload.addEventListener("WebReload",()=>{
|
|
12266
|
+
location.reload()
|
|
12267
|
+
})
|
package/package.json
CHANGED