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

11 lines
291 B
JavaScript

import { onAppReady } from "../api/ready.js";
import { ensurePropertyExists } from "../api/utils.js";
/**
* Dispatches the 'Ready' event to all enabled plugins.
*/
export default function() {
ensurePropertyExists(window, "TD_PLUGINS");
onAppReady(() => window.TD_PLUGINS.onReady());
};