1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-07 08:34:06 +02:00

Fix t.co bypass not working in popup notifications

This commit is contained in:
chylex 2016-05-08 14:48:11 +02:00
parent f6a4e39cfc
commit 5f79b286f1

View File

@ -29,7 +29,7 @@
//
document.body.addEventListener("contextmenu",function(e){
bubbleParents(e.target,"A",function(ele){
$TD.setLastRightClickedLink(element.getAttribute("data-full-url") || "");
$TD.setLastRightClickedLink(ele.getAttribute("data-full-url") || "");
});
});
})($TD);