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