1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-13 18:15:48 +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

@ -147,8 +147,13 @@
html.find("a[href='#']").each(function(){ // remove <a> tags around links that don't lead anywhere (such as account names the tweet replied to)
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(".avatar").first().css("margin-bottom", "0");
}