mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 18:56:44 -04:00
12 lines
385 B
JavaScript
12 lines
385 B
JavaScript
function() {
|
|
window.onload = onLoad();
|
|
|
|
function onLoad() {
|
|
window.HTMLUtils.start();
|
|
for (i=0; i<document.querySelectorAll('h1, h2, h3, h4, h5, h6').length; i++) {
|
|
headerObject = document.querySelectorAll('h1, h2, h3, h4, h5, h6')[i];
|
|
window.HTMLUtils.parse(headerObject.textContent, headerObject.tagName, headerObject.id);
|
|
}
|
|
window.HTMLUtils.stop();
|
|
}
|
|
} |