SOURCE / PINNED RELEASE
Made of little things.
Crossfire
- Release
- 9614abe48623…
- Author-recorded commit
- 6f6c8299e2fb…
- License
- LICENSE
- Author’s source reference
- nostr://npub1n8ga89w8h6tvwamxusfyzexw8gjy84yxu9rxgnmk955cxtml4ujswzxydd/wss%3A%2F%2Fgit.napplet.soy%2F/n-347ab685aef
Archive hash verified: 34d5295141b419db…. The source-to-build association is the author’s claim; it has not been independently rebuilt.
import { config } from '@napplet/sdk';
import { runtimeHasDomain } from './domain-availability.js';
// The upstream Vite plugin embeds config.schema.json into the signed build.
// Config is optional here: the stylesheet also supplies these defaults.
if (runtimeHasDomain('config')) {
try {
const subscription = config.subscribe((values) => {
const root = document.documentElement.style;
const textSize = typeof values.textSize === 'number' ? values.textSize : 13;
const controlSize = typeof values.controlSize === 'number' ? values.controlSize : 28;
root.fontSize = `${textSize}px`;
root.setProperty('--control-h', `${controlSize}px`);
root.setProperty('--napplet-text-selection', values.selectText === true ? 'text' : 'none');
});
window.addEventListener('pagehide', () => subscription.close(), { once: true });
} catch {
// Optional operations may be unavailable even when a host exposes the domain.
// Keep stylesheet defaults so this example still works in a limited host.
}
}