code commenting

This commit is contained in:
Phuntsok Drak-pa 2019-08-25 01:35:23 +02:00
parent a1e73e9d39
commit 92e6fbd67a
1 changed files with 6 additions and 0 deletions

View File

@ -16,8 +16,14 @@ window.onload = function() {
$header.toggleClass('unrolled');
$header.toggleClass('rolled');
});
// Move the title out of the content div
$('.title').prependTo($("body"));
// Move the postamble in the content div
$('#postamble').appendTo($("#content"));
// Move each table in a div to handle large tables' overflow
$('table').each(function(){
$table = $(this);
$table.before('<div class="largetable"></div>');