You know how it is

This commit is contained in:
Akko
2025-10-02 20:33:56 +02:00
parent fac0a2266d
commit 0018a7884c
208 changed files with 9923 additions and 887 deletions

View File

@@ -65,8 +65,8 @@ function hideForOrg_whenclicked(div_obj) {
div_obj.parent().removeClass("orgjq-expanded").addClass("orgjq-contracted");
if(HOW_TO_HIDE=='hide'){
div_obj.nextAll().hide("fast"); // "normal" es más lento
div_obj.hide();
//div_obj.nextAll().hide("fast"); // "normal" es más lento
//div_obj.hide();
} else if(HOW_TO_HIDE=='shrink'){
//div_obj.css("zoom","0.25");
// div_obj.nextAll().css("zoom","0.25");
@@ -238,6 +238,13 @@ function enable_global_outlining() {
$("div#table-of-contents").removeClass("orgjq-expanded").addClass("orgjq-contracted");
// Hide default-hidden categories
$(".orgjq-contract-default").each(
function(){
hideForOrg_whenclicked($(this))
}
);
// If provided #fragment in URL, we must locate and open the corresponding header and its parents
var url = document.location.toString();