easyappointments/assets/js/layouts/account_layout.js

31 lines
903 B
JavaScript
Raw Normal View History

2021-12-11 00:02:29 +03:00
/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment Scheduler
2021-12-11 00:02:29 +03:00
*
* @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-12-11 00:02:29 +03:00
* @since v1.5.0
* ---------------------------------------------------------------------------- */
/**
* Account layout.
*
* This module implements the account layout functionality.
*/
2021-12-11 00:02:29 +03:00
window.App.Layouts.Account = (function () {
const $selectLanguage = $('#select-language');
/**
* Initialize the module.
*/
function initialize() {
App.Utils.Lang.enableLanguageSelection($selectLanguage);
}
document.addEventListener('DOMContentLoaded', initialize);
2021-12-11 00:02:29 +03:00
return {};
})();