|
@@ -119,6 +119,18 @@
|
|
};
|
|
};
|
|
bridge.call_native_handler('on_native_click',JSON.stringify(jsInit));
|
|
bridge.call_native_handler('on_native_click',JSON.stringify(jsInit));
|
|
|
|
|
|
|
|
+ $('#invite_btn').on('click',function(){
|
|
|
|
+ var jsonobject = {
|
|
|
|
+ action:"share_page",
|
|
|
|
+ params: {
|
|
|
|
+ title:title,
|
|
|
|
+ sub_title:sub_title,
|
|
|
|
+ img_url:img_url,
|
|
|
|
+ url:url
|
|
|
|
+ }
|
|
|
|
+ };
|
|
|
|
+ bridge.call_native_handler('on_native_click',JSON.stringify(jsonobject));
|
|
|
|
+ });
|
|
|
|
|
|
if(from_app) {
|
|
if(from_app) {
|
|
$('.send_input').css('width','560px');
|
|
$('.send_input').css('width','560px');
|
|
@@ -371,7 +383,6 @@
|
|
}).send();
|
|
}).send();
|
|
}
|
|
}
|
|
else if(msg_type == 'bargain_close') {
|
|
else if(msg_type == 'bargain_close') {
|
|
- console.log('bargain_close');
|
|
|
|
count_down_time = -1;
|
|
count_down_time = -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -441,6 +452,7 @@
|
|
$('.affirm_close_btn').on('click',function(){
|
|
$('.affirm_close_btn').on('click',function(){
|
|
$('.affirm_pop').addClass('hide');
|
|
$('.affirm_pop').addClass('hide');
|
|
});
|
|
});
|
|
|
|
+
|
|
</script>
|
|
</script>
|
|
</body>
|
|
</body>
|
|
</html>
|
|
</html>
|