|
@@ -171,7 +171,8 @@
|
|
|
imgUrl:img_url
|
|
|
});
|
|
|
|
|
|
- document.querySelector('#share_btn').addEventListener('click',function(e){
|
|
|
+ document.querySelector('#share_btn').addEventListener('click',function(e)
|
|
|
+ {
|
|
|
e.preventDefault();
|
|
|
var jsonobject = {
|
|
|
action:"share_page",
|
|
@@ -186,6 +187,19 @@
|
|
|
};
|
|
|
call_native_handler('on_native_click',JSON.stringify(jsonobject));
|
|
|
});
|
|
|
+
|
|
|
+ var jsInit = {
|
|
|
+ action:"view_init",
|
|
|
+ params: {
|
|
|
+ can_invite:true, //为兼容之前版本,保留
|
|
|
+ can_share:true,
|
|
|
+ title:title,
|
|
|
+ sub_title:sub_title,
|
|
|
+ img_url:img_url,
|
|
|
+ url:url
|
|
|
+ }
|
|
|
+ };
|
|
|
+ call_native_handler('on_native_click',JSON.stringify(jsInit));
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|