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

11 lines
247 B
JavaScript

import { $TD } from "../api/bridge.js";
/**
* Handles clicking on the 'Show this thread' link.
*/
export default function() {
document.getElementById("tduck-show-thread")?.addEventListener("click", function(){
$TD.showTweetDetail();
});
};