mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
22 lines
468 B
JavaScript
22 lines
468 B
JavaScript
/**
|
|
* Telescope configuration namespace
|
|
* @namespace Telescope.config
|
|
*/
|
|
Telescope.config = {};
|
|
|
|
Telescope.config.customPrefix = "custom_";
|
|
|
|
/**
|
|
* Subscriptions namespace
|
|
* @namespace Telescope.subscriptions
|
|
*/
|
|
Telescope.subscriptions = [];
|
|
|
|
/**
|
|
* Add a subscription to be preloaded
|
|
* @param {string} subscription - The name of the subscription
|
|
*/
|
|
Telescope.subscriptions.preload = function (subscription) {
|
|
Telescope.subscriptions.push(subscription);
|
|
};
|
|
|