apostrophe
Version:
The Apostrophe Content Management System.
21 lines (20 loc) • 360 B
JavaScript
module.exports = {
options: {
components: {},
alias: 'busy'
},
init(self) {
self.busy = false;
self.enableBrowserData();
},
methods(self) {
return {
getBrowserData(req) {
return {
busy: self.busy,
components: { the: self.options.components.the || 'TheAposBusy' }
};
}
};
}
};