From 423edc73404de525245011b32268ee57d7011e3e Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Fri, 10 Dec 2021 22:02:29 +0100 Subject: [PATCH] Created new layout JS files. --- assets/js/layouts/account_layout.js | 14 ++++++++++++++ assets/js/layouts/backend_layout.js | 14 ++++++++++++++ assets/js/layouts/booking_layout.js | 14 ++++++++++++++ assets/js/layouts/message_layout.js | 14 ++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 assets/js/layouts/account_layout.js create mode 100644 assets/js/layouts/backend_layout.js create mode 100644 assets/js/layouts/booking_layout.js create mode 100644 assets/js/layouts/message_layout.js diff --git a/assets/js/layouts/account_layout.js b/assets/js/layouts/account_layout.js new file mode 100644 index 00000000..11c5015c --- /dev/null +++ b/assets/js/layouts/account_layout.js @@ -0,0 +1,14 @@ +/* ---------------------------------------------------------------------------- + * Easy!Appointments - Open Source Web Scheduler + * + * @package EasyAppointments + * @author A.Tselegidis + * @copyright Copyright (c) 2013 - 2020, Alex Tselegidis + * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 + * @link http://easyappointments.org + * @since v1.5.0 + * ---------------------------------------------------------------------------- */ + +window.App.Layouts.Account = (function () { + return {}; +})(); diff --git a/assets/js/layouts/backend_layout.js b/assets/js/layouts/backend_layout.js new file mode 100644 index 00000000..0406552d --- /dev/null +++ b/assets/js/layouts/backend_layout.js @@ -0,0 +1,14 @@ +/* ---------------------------------------------------------------------------- + * Easy!Appointments - Open Source Web Scheduler + * + * @package EasyAppointments + * @author A.Tselegidis + * @copyright Copyright (c) 2013 - 2020, Alex Tselegidis + * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 + * @link http://easyappointments.org + * @since v1.5.0 + * ---------------------------------------------------------------------------- */ + +window.App.Layouts.Backend = (function () { + return {}; +})(); diff --git a/assets/js/layouts/booking_layout.js b/assets/js/layouts/booking_layout.js new file mode 100644 index 00000000..20940e63 --- /dev/null +++ b/assets/js/layouts/booking_layout.js @@ -0,0 +1,14 @@ +/* ---------------------------------------------------------------------------- + * Easy!Appointments - Open Source Web Scheduler + * + * @package EasyAppointments + * @author A.Tselegidis + * @copyright Copyright (c) 2013 - 2020, Alex Tselegidis + * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 + * @link http://easyappointments.org + * @since v1.5.0 + * ---------------------------------------------------------------------------- */ + +window.App.Layouts.Booking = (function () { + return {}; +})(); diff --git a/assets/js/layouts/message_layout.js b/assets/js/layouts/message_layout.js new file mode 100644 index 00000000..625ef258 --- /dev/null +++ b/assets/js/layouts/message_layout.js @@ -0,0 +1,14 @@ +/* ---------------------------------------------------------------------------- + * Easy!Appointments - Open Source Web Scheduler + * + * @package EasyAppointments + * @author A.Tselegidis + * @copyright Copyright (c) 2013 - 2020, Alex Tselegidis + * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 + * @link http://easyappointments.org + * @since v1.5.0 + * ---------------------------------------------------------------------------- */ + +window.App.Layouts.Message = (function () { + return {}; +})();