mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
11 lines
247 B
JavaScript
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();
|
|
});
|
|
};
|