This repository has been archived on 2023-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
langue-phundrak-com/js/main.js

27 lines
838 B
JavaScript

window.onload = function() {
// Add the possibility for all headers to roll what follows them
['h2', 'h3', 'h4', 'h5', 'h6'].forEach(function(htitle){
$(htitle).addClass('rolled');
});
// Except for the footnotes
$('.footnotes').removeClass('rolled');
// Make the rollable headers actually rollable and rolled
$('.rolled').click(function() {
$header = $(this);
$header.nextAll().each(function() {
$(this).slideToggle(500);
});
$header.toggleClass('unrolled');
$header.toggleClass('rolled');
});
$('.title').prependTo($("body"));
$('#postamble').appendTo($("#content"));
$('table').each(function(){
$table = $(this);
$table.before('<div class="largetable"></div>');
$table.prependTo($table.prev());
});
}