1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/Resources/notification.js

11 lines
274 B
JavaScript

(function($TD){
//
// Block: Hook into links to bypass default open function
//
document.body.addEventListener("click",function(e){
if (e.target.tagName == "A"){
$TD.openBrowser(e.target.getAttribute("href"));
e.preventDefault();
}
});
})($TD);