| Current Path : /home/happyrenas/myreco.online/administration/assets/js/pages/custom/profile/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/myreco.online/administration/assets/js/pages/custom/profile/profile.js |
"use strict";
// Class definition
var KTProfile = function () {
// Elements
var avatar;
var offcanvas;
// Private functions
var _initAside = function () {
// Mobile offcanvas for mobile mode
offcanvas = new KTOffcanvas('kt_profile_aside', {
overlay: true,
baseClass: 'offcanvas-mobile',
//closeBy: 'kt_user_profile_aside_close',
toggleBy: 'kt_subheader_mobile_toggle'
});
}
var _initForm = function() {
avatar = new KTImageInput('kt_profile_avatar');
}
return {
// public functions
init: function() {
_initAside();
_initForm();
}
};
}();
jQuery(document).ready(function() {
KTProfile.init();
});