File: //var/www/innodrive/src/js/modules/about.js
const headerImg = document.querySelectorAll('.header_wrapper-right--text img')[0];
if (headerImg !== undefined) {
headerImgParent = headerImg.parentNode.parentNode;
headerImgParent.style.height = headerImg.height + "px";
var history = document.querySelectorAll(".history--item");
history.forEach((element) => {
year = element.childNodes;
getClass = element.className.split(' ');
let style = document.createElement('style');
style.innerHTML = `
.${getClass[1]} .year::after {
height: calc(${element.clientHeight}px - 50px) !important;
}
`;
document.head.appendChild(style);
});
}
function getCookie(name) {
const fullCookieString = '; ' + document.cookie;
const splitCookie = fullCookieString.split('; ' + name + '=');
return splitCookie.length === 2 ? splitCookie.pop().split(';').shift() : null;
}
jQuery(document).ready(function($){
$('.show_content').click(function(){
$('.history-items').toggleClass('hide');
if ($('.history-items').hasClass('hide')) {
$('.show_content').html(getCookie('pll_language') === 'ru' ? 'Читать полностью' : 'Read more');
} else {
$('.show_content').html(getCookie('pll_language') === 'ru' ? 'Скрыть' : 'Hide');
}
return false;
});
$('.show_r').click(function(){
$('.requisites-section .text-article').toggleClass('hide');
if ($('.requisites-section .text-article').hasClass('hide')) {
$('.show_r').html(getCookie('pll_language') === 'ru' ? 'Читать полностью реквизиты' : 'Read full requisites');
} else {
$('.show_r').html(getCookie('pll_language') === 'ru' ? 'Свернуть' : 'Collapse');
}
return false;
});
});