Parcourir la source

修正分享按钮指向的图片地址

ishunsei il y a 1 an
Parent
commit
9d2f72c128
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      myCode/index.js

+ 1 - 1
myCode/index.js

@@ -30,6 +30,6 @@ videoBtnDom.onclick = () => {
 window.onClickShare = () => {
 	var a = document.createElement('a')
     a.download = 'image'
-    a.href = '/StreamingAssets/share.png'
+    a.href = '/project/unityWeb/changzhou/streamingAssets/share.png'
     a.click()
 }