@dolphinweex/weex-vue-render 0.2.72 → 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 +5 -5
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -5736,7 +5736,7 @@ function getImage(weex) {
|
|
|
5736
5736
|
const params = {
|
|
5737
5737
|
operation: "saveImageToPhotosAlbum",
|
|
5738
5738
|
params: {
|
|
5739
|
-
src: this.
|
|
5739
|
+
src: this.src,
|
|
5740
5740
|
},
|
|
5741
5741
|
};
|
|
5742
5742
|
weex.requireModule("bridgeModule").commandInterface(
|
|
@@ -12261,7 +12261,7 @@ return weex;
|
|
|
12261
12261
|
// 一多适配不同宽高比例的屏幕,使用resetViewport也能适配宽度,
|
|
12262
12262
|
// 但项目存在没有使用rem的元素,且页面高度重置方法也因项目而异。
|
|
12263
12263
|
// 后续联合所有页面统一做了适配后可删除此段代码
|
|
12264
|
-
const globalEventForReload = weex.requireModule('globalEvent')
|
|
12265
|
-
globalEventForReload.addEventListener("WebReload",()=>{
|
|
12266
|
-
|
|
12267
|
-
})
|
|
12264
|
+
const globalEventForReload = weex.requireModule('globalEvent')
|
|
12265
|
+
globalEventForReload.addEventListener("WebReload",()=>{
|
|
12266
|
+
location.reload()
|
|
12267
|
+
})
|
package/package.json
CHANGED