1368
правок
WikiSysop (обсуждение | вклад) Нет описания правки Метки: с мобильного устройства из мобильной версии |
WikiSysop (обсуждение | вклад) Нет описания правки Метки: с мобильного устройства из мобильной версии |
||
| Строка 51: | Строка 51: | ||
// свернуть все заголовки | // свернуть все заголовки | ||
console.log('Mediawiki:Mobile.js', | console.log('Mediawiki:Mobile.js', 4); | ||
var headings = document.querySelector('.section-heading | var headings = document.querySelector('.section-heading[aria-expanded="true"]'); | ||
console.log('>> headings', headings); | console.log('>> headings', headings); | ||
document.addEventListener('DOMContentLoaded', function() { | |||
var sections = document.querySelectorAll('.section-heading[aria-expanded="true"]'); | |||
sections.forEach(function(section) { | |||
section.click(); | |||
}); | |||
}); | |||
document.addEventListener("DOMContentLoaded", function() { | document.addEventListener("DOMContentLoaded", function() { | ||
headings.forEach(function(h){ | // console.log('DOMContentLoaded'); | ||
// var headings = document.querySelector('.section-heading.open-block'); | |||
}); | // console.log('>> headings', headings); | ||
// headings.forEach(function(h){ | |||
// h.click(); | |||
// }); | |||
}); | }); | ||