mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-17 03:15:47 +02:00
13 lines
402 B
JavaScript
13 lines
402 B
JavaScript
import { $ } from "../api/jquery.js";
|
|
import { prioritizeNewestEvent } from "./globals/prioritize_newest_event.js";
|
|
import { showTweetDetail } from "./globals/show_tweet_detail.js";
|
|
|
|
/**
|
|
* Registers global functions which require jQuery.
|
|
*/
|
|
export default function() {
|
|
window.jQuery = $;
|
|
window.TDGF_prioritizeNewestEvent = prioritizeNewestEvent;
|
|
window.TDGF_showTweetDetail = showTweetDetail;
|
|
};
|