Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

11 рядки
309 B

  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. function showSection(section) {
  6. document.querySelectorAll('section').forEach(function (element) {
  7. element.style.display = element.getAttribute('data-section') === section ? null : 'none';
  8. })
  9. }