1
0
Fork 0
TweetDuck/resources/Content/notification/handle_show_this_thread_lin...

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();
});
};