You've already forked tribes-plugin-template
16 lines
464 B
JavaScript
16 lines
464 B
JavaScript
// Plugin JavaScript entry point.
|
|
//
|
|
// This file is served by the host at /plugins-assets/my_plugin/my_plugin.js
|
|
// and included in the page layout if declared in manifest.json assets.global_js.
|
|
//
|
|
// To register LiveView hooks:
|
|
//
|
|
// window.TribesPluginHooks = window.TribesPluginHooks || {};
|
|
// window.TribesPluginHooks["MyPluginHook"] = {
|
|
// mounted() {
|
|
// console.log("MyPlugin hook mounted");
|
|
// }
|
|
// };
|
|
|
|
console.log("my_plugin loaded");
|