You've already forked tribes-plugin-template
16 lines
451 B
JavaScript
16 lines
451 B
JavaScript
// Plugin JavaScript entry point.
|
|
//
|
|
// This file is served by the host at /plugins-assets/aether/aether.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["AetherHook"] = {
|
|
// mounted() {
|
|
// console.log("Aether hook mounted");
|
|
// }
|
|
// };
|
|
|
|
console.log("aether loaded");
|