|
@@ -661,15 +661,6 @@ function onTweetReplyClick(params) {
|
|
|
}
|
|
|
|
|
|
window.parent.postMessage({ actionType: "IFRAME_RED_PACKET_ON_TWEET_REPLY_CLICK", data: replyData }, "*");
|
|
|
-
|
|
|
- Report.reportLog({
|
|
|
- objectType: Report.objectType.comment_and_tag,
|
|
|
- pageSource: Report.pageSource.task_page,
|
|
|
- businessType: Report.businessType.buttonClick,
|
|
|
- postId: state.postId,
|
|
|
- srcContentId: state.tweetId,
|
|
|
- senderId: state.userId,
|
|
|
- });
|
|
|
}
|
|
|
|
|
|
function changeNotification(checked) {
|
|
@@ -706,6 +697,16 @@ async function clickReply(params) {
|
|
|
} else {
|
|
|
window.parent.postMessage({ actionType: "IFRAME_RED_PACKET_REPLY_CLICK", data: replyData }, "*");
|
|
|
}
|
|
|
+
|
|
|
+ // 埋点
|
|
|
+ Report.reportLog({
|
|
|
+ objectType: Report.objectType.comment_and_tag,
|
|
|
+ pageSource: Report.pageSource.task_page,
|
|
|
+ businessType: Report.businessType.buttonClick,
|
|
|
+ postId: state.postId,
|
|
|
+ srcContentId: state.tweetId,
|
|
|
+ senderId: state.userId,
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
/**
|