MediaWiki:Mobile.js: различия между версиями

нет описания правки
Нет описания правки
Метки: с мобильного устройства из мобильной версии
Нет описания правки
Метки: с мобильного устройства из мобильной версии
Строка 51: Строка 51:


// свернуть все заголовки
// свернуть все заголовки
console.log('Mediawiki:Mobile.js', 4);
console.log('Mediawiki:Mobile.js', 5);
var headings = document.querySelector('.section-heading');
var headings = document.querySelectorAll('.section-heading.open-block');
console.log('>> headings', headings);
console.log('>> headings', headings);


document.addEventListener('DOMContentLoaded', function() {
document.addEventListener('DOMContentLoaded', function() {
   var sections = document.querySelectorAll('.section-heading[aria-expanded="true"]');
   console.log("123");
  sections.forEach(function(section) {
    section.click();
  });
});
});