Skip to main content

max / balanced_breakfast

461 B · 21 lines History Blame Raw
1 /**
2 * @fileoverview BalancedBreakfast global namespace.
3 *
4 * Defines the `BB` object on `window` with sub-namespaces for each module.
5 * Every other JS file attaches its exports to one of these slots (e.g.,
6 * `BB.api`, `BB.state`). This must load before all other BB scripts.
7 */
8 window.BB = {
9 api: {},
10 state: {},
11 ui: {},
12 utils: {},
13 sources: {},
14 items: {},
15 detail: {},
16 feeds: {},
17 themes: {},
18 sync: {},
19 app: {},
20 };
21