2021-11-29 11:01:02 +03:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2021-12-18 19:43:45 +03:00
|
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link https://easyappointments.org
|
2021-11-29 11:01:02 +03:00
|
|
|
* @since v1.5.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
2022-01-14 11:26:44 +03:00
|
|
|
/**
|
|
|
|
* App global namespace object.
|
|
|
|
*
|
|
|
|
* This script should be loaded before the other modules in order to define the global application namespace.
|
|
|
|
*/
|
2021-11-29 11:01:02 +03:00
|
|
|
window.App = (function () {
|
|
|
|
return {
|
|
|
|
Components: {},
|
|
|
|
Http: {},
|
|
|
|
Lang: {},
|
|
|
|
Layouts: {},
|
|
|
|
Pages: {},
|
2021-12-17 12:44:52 +03:00
|
|
|
Utils: {},
|
|
|
|
Vars: {}
|
2021-11-29 11:01:02 +03:00
|
|
|
};
|
|
|
|
})();
|