iflrandevu/assets/js/app.js

25 lines
760 B
JavaScript
Raw Normal View History

2021-11-29 11:01:02 +03:00
/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment Scheduler
2021-11-29 11:01:02 +03:00
*
* @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
* ---------------------------------------------------------------------------- */
/**
* 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: {},
Layouts: {},
Pages: {},
Utils: {}
2021-11-29 11:01:02 +03:00
};
})();