36 lines
1.6 KiB
JavaScript
36 lines
1.6 KiB
JavaScript
/**
|
|
* Config
|
|
* -------------------------------------------------------------------------------------
|
|
* ! IMPORTANT: Make sure you clear the browser local storage In order to see the config changes in the template.
|
|
* ! To clear local storage: (https://www.leadshook.com/help/how-to-clear-local-storage-in-google-chrome-browser/).
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
let assetsPath = document.documentElement.getAttribute('data-assets-path'),
|
|
templateName = document.documentElement.getAttribute('data-template'),
|
|
rtlSupport = true; // set true for rtl support (rtl + ltr), false for ltr only.
|
|
|
|
/**
|
|
* TemplateCustomizer settings
|
|
* -------------------------------------------------------------------------------------
|
|
* cssPath: Core CSS file path
|
|
* themesPath: Theme CSS file path
|
|
* displayCustomizer: true(Show customizer), false(Hide customizer)
|
|
* lang: To set default language, Add more langues and set default. Fallback language is 'en'
|
|
* controls: [ 'rtl', 'style', 'headerType', 'contentLayout', 'layoutCollapsed', 'layoutNavbarOptions', 'themes' ] | Show/Hide customizer controls
|
|
* defaultStyle: 'light', 'dark', 'system' (Mode)
|
|
* defaultTextDir: 'ltr', 'rtl' (rtlSupport must be true for rtl mode)
|
|
*/
|
|
|
|
if (typeof TemplateCustomizer !== 'undefined') {
|
|
window.templateCustomizer = new TemplateCustomizer({
|
|
cssPath: assetsPath + 'vendor/css' + (rtlSupport ? '/rtl' : '') + '/',
|
|
themesPath: assetsPath + 'vendor/css' + (rtlSupport ? '/rtl' : '') + '/',
|
|
displayCustomizer: true,
|
|
// defaultTextDir: 'rtl'
|
|
// defaultStyle: 'dark',
|
|
controls: ['rtl', 'style']
|
|
});
|
|
}
|