UNPKG

uix-kit

Version:

A free web kits for fast web design and development, compatible with Bootstrap v5.

57 lines (37 loc) 1.03 kB
/* ************************************* * <!-- Theme Scripts --> ************************************* */ import { UixModuleInstance, } from '@uixkit/core/_global/js'; import '../scss/_style.scss'; export const MAIN = ( ( module, $, window, document ) => { if ( window.MAIN === null ) return false; module.MAIN = module.MAIN || {}; module.MAIN.version = '0.0.1'; module.MAIN.documentReady = function( $ ) { /* --------------------------- Function Here --------------------------- */ //your code here... }; module.MAIN.pageLoaded = function() { /* --------------------------- Function Here --------------------------- */ //your code here... }; module.components.documentReady.push( module.MAIN.documentReady ); module.components.pageLoaded.push( module.MAIN.pageLoaded ); return class MAIN { constructor() { this.module = module; } }; })( UixModuleInstance, jQuery, window, document );