Travel: Update css, zmiany w widoku faktur zakupowych
This commit is contained in:
+7
-33
@@ -190,7 +190,7 @@ if (document.getElementById('layout-menu')) {
|
||||
i18next
|
||||
.use(i18NextHttpBackend)
|
||||
.init({
|
||||
lng: window.templateCustomizer ? window.templateCustomizer.settings.lang : 'en',
|
||||
lng: 'en',
|
||||
debug: false,
|
||||
fallbackLng: 'en',
|
||||
backend: {
|
||||
@@ -211,7 +211,6 @@ if (document.getElementById('layout-menu')) {
|
||||
for (let i = 0; i < dropdownItems.length; i++) {
|
||||
dropdownItems[i].addEventListener('click', function () {
|
||||
let currentLanguage = this.getAttribute('data-language');
|
||||
let textDirection = this.getAttribute('data-text-direction');
|
||||
|
||||
for (let sibling of this.parentNode.children) {
|
||||
var siblingEle = sibling.parentElement.parentNode.firstChild;
|
||||
@@ -227,22 +226,11 @@ if (document.getElementById('layout-menu')) {
|
||||
this.classList.add('active');
|
||||
|
||||
i18next.changeLanguage(currentLanguage, (err, t) => {
|
||||
window.templateCustomizer ? window.templateCustomizer.setLang(currentLanguage) : '';
|
||||
directionChange(textDirection);
|
||||
if (err) return console.log('something went wrong loading', err);
|
||||
localize();
|
||||
});
|
||||
});
|
||||
}
|
||||
function directionChange(textDirection) {
|
||||
if (textDirection === 'rtl') {
|
||||
if (localStorage.getItem('templateCustomizer-' + templateName + '--Rtl') !== 'true')
|
||||
window.templateCustomizer ? window.templateCustomizer.setRtl(true) : '';
|
||||
} else {
|
||||
if (localStorage.getItem('templateCustomizer-' + templateName + '--Rtl') === 'true')
|
||||
window.templateCustomizer ? window.templateCustomizer.setRtl(false) : '';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function localize() {
|
||||
@@ -293,7 +281,7 @@ if (document.getElementById('layout-menu')) {
|
||||
// --------------------
|
||||
|
||||
// Init BS Tooltip
|
||||
const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"], .btn[title], .badge[title], a[title], i[title]'));
|
||||
const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
|
||||
tooltipTriggerList.map(function (tooltipTriggerEl) {
|
||||
return new bootstrap.Tooltip(tooltipTriggerEl);
|
||||
});
|
||||
@@ -330,16 +318,6 @@ if (document.getElementById('layout-menu')) {
|
||||
// Init PerfectScrollbar in Navbar Dropdown (i.e notification)
|
||||
window.Helpers.initNavbarDropdownScrollbar();
|
||||
|
||||
let horizontalMenuTemplate = document.querySelector("[data-template^='horizontal-menu']");
|
||||
if (horizontalMenuTemplate) {
|
||||
// if screen size is small then set navbar fixed
|
||||
if (window.innerWidth < window.Helpers.LAYOUT_BREAKPOINT) {
|
||||
window.Helpers.setNavbarFixed('fixed');
|
||||
} else {
|
||||
window.Helpers.setNavbarFixed('');
|
||||
}
|
||||
}
|
||||
|
||||
// On window resize listener
|
||||
// -------------------------
|
||||
window.addEventListener(
|
||||
@@ -353,13 +331,8 @@ if (document.getElementById('layout-menu')) {
|
||||
}
|
||||
}
|
||||
// Horizontal Layout : Update menu based on window size
|
||||
let horizontalMenuTemplate = document.querySelector("[data-template^='horizontal-menu']");
|
||||
if (horizontalMenuTemplate) {
|
||||
// if screen size is small then set navbar fixed
|
||||
if (window.innerWidth < window.Helpers.LAYOUT_BREAKPOINT) {
|
||||
window.Helpers.setNavbarFixed('fixed');
|
||||
} else {
|
||||
window.Helpers.setNavbarFixed('');
|
||||
}
|
||||
setTimeout(function () {
|
||||
if (window.innerWidth < window.Helpers.LAYOUT_BREAKPOINT) {
|
||||
if (document.getElementById('layout-menu')) {
|
||||
@@ -394,8 +367,6 @@ if (document.getElementById('layout-menu')) {
|
||||
if (typeof TemplateCustomizer !== 'undefined') {
|
||||
if (window.templateCustomizer.settings.defaultMenuCollapsed) {
|
||||
window.Helpers.setCollapsed(true, false);
|
||||
} else {
|
||||
window.Helpers.setCollapsed(false, false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -403,7 +374,10 @@ if (document.getElementById('layout-menu')) {
|
||||
if (typeof config !== 'undefined') {
|
||||
if (config.enableMenuLocalStorage) {
|
||||
try {
|
||||
if (localStorage.getItem('templateCustomizer-' + templateName + '--LayoutCollapsed') !== null)
|
||||
if (
|
||||
localStorage.getItem('templateCustomizer-' + templateName + '--LayoutCollapsed') !== null &&
|
||||
localStorage.getItem('templateCustomizer-' + templateName + '--LayoutCollapsed') !== 'false'
|
||||
)
|
||||
window.Helpers.setCollapsed(
|
||||
localStorage.getItem('templateCustomizer-' + templateName + '--LayoutCollapsed') === 'true',
|
||||
false
|
||||
|
||||
Reference in New Issue
Block a user