"use strict"; // V09 W-axis page \u2014 mounts the existing WAxisSettings Svelte component // inside the settings shell so it gets a real top-level rail entry // instead of being a soft-link anchor inside Display & Units. module.exports = { template: "#w-axis-view-template", attached: function () { this.svelteComponent = SvelteComponents.createComponent( "WAxisSettings", document.getElementById("w-axis-mount") ); }, detached: function () { if (this.svelteComponent) this.svelteComponent.$destroy(); }, };