/var/www/vhosts/bsbdokum.com.tr/httpdocs/admin/assets/js/pages/custom/profile
NameSizeModeActions
profile.js6860644editdlrm
profile.min.js2550644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/admin/assets/js/pages/custom/profile/profile.js (686B)
"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(); });