Add project files.
This commit is contained in:
27
Content/Panel/js/pages/custom/contacts/list-columns.js
Normal file
27
Content/Panel/js/pages/custom/contacts/list-columns.js
Normal file
@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
|
||||
// Class definition
|
||||
var KTContactsListColumns = function () {
|
||||
|
||||
// Private functions
|
||||
var initAside = function () {
|
||||
// Mobile offcanvas for mobile mode
|
||||
var offcanvas = new KTOffcanvas('kt_contact_aside', {
|
||||
overlay: true,
|
||||
baseClass: 'kt-app__aside',
|
||||
closeBy: 'kt_contact_aside_close',
|
||||
toggleBy: 'kt_subheader_mobile_toggle'
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
// public functions
|
||||
init: function() {
|
||||
initAside();
|
||||
}
|
||||
};
|
||||
}();
|
||||
|
||||
KTUtil.ready(function() {
|
||||
KTContactsListColumns.init();
|
||||
});
|
||||
Reference in New Issue
Block a user