Accessibility statement. Part 1. In Progress.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2024-12-02 14:17:58 +02:00
parent de2ddbe8b5
commit 729d8fb435
10 changed files with 231 additions and 2 deletions

View file

@ -0,0 +1,11 @@
import { ReactiveCache } from '/imports/reactiveCache';
import { TAPi18n } from '/imports/i18n';
BlazeComponent.extendComponent({
onCreated() {
this.error = new ReactiveVar('');
this.loading = new ReactiveVar(false);
Meteor.subscribe('setting');
},
}).register('accessibility');