mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
24 lines
760 B
JavaScript
24 lines
760 B
JavaScript
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Online Appointment Scheduler
|
|
*
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.5.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* App global namespace object.
|
|
*
|
|
* This script should be loaded before the other modules in order to define the global application namespace.
|
|
*/
|
|
window.App = (function () {
|
|
return {
|
|
Components: {},
|
|
Http: {},
|
|
Layouts: {},
|
|
Pages: {},
|
|
Utils: {}
|
|
};
|
|
})();
|