HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
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;
  });
});