1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-29 20:34:04 +02:00

Remove drop down button from follow notifications

This commit is contained in:
chylex 2017-06-21 10:13:40 +02:00
parent ac245f5128
commit 6f4a99a7cb

View File

@ -148,7 +148,12 @@
this.outerHTML = this.innerHTML; this.outerHTML = this.innerHTML;
}); });
if (tweet.getChirpType().includes("list_member")){ let type = tweet.getChirpType();
if (type === "follow"){
html.find(".js-user-actions-menu").parent().remove();
}
else if (type.includes("list_member")){
html.find(".activity-header").first().css("margin-top", "2px"); html.find(".activity-header").first().css("margin-top", "2px");
html.find(".avatar").first().css("margin-bottom", "0"); html.find(".avatar").first().css("margin-bottom", "0");
} }