123456789101112131415161718 |
- /**
- * Returns the namespace for all global variables, functions, etc that we need.
- *
- * @returns {Object} The namespace.
- *
- * NOTE: After React-ifying everything this should be the only global.
- */
- export function getJitsiMeetGlobalNS() {
- if (!window.JitsiMeetJS) {
- window.JitsiMeetJS = {};
- }
-
- if (!window.JitsiMeetJS.app) {
- window.JitsiMeetJS.app = {};
- }
-
- return window.JitsiMeetJS.app;
- }
|