25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

11 satır
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. }