Skip to content

Commit

Permalink
fix(PC): 在个人主页转发动态时会添加到其他人个人主页时间线中的问题
Browse files Browse the repository at this point in the history
issue #628
  • Loading branch information
mutoe committed Feb 28, 2019
1 parent 9430f5c commit 5faf023
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ weibo.afterPostFeed = function(feed_id) {
if ($('#content_list').find('.no_data_div').length > 0) {
$('#content_list').find('.no_data_div').remove();
}
$(response.data.data).hide().prependTo('#content_list').fadeIn('slow');
$(response.data.data).hide().prependTo('#content_list:not(.profile_list)').fadeIn('slow');
$("img.lazy").lazyload({effect: "fadeIn"});
})
.catch(function (error) {
Expand Down

0 comments on commit 5faf023

Please sign in to comment.