X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-propro;a=blobdiff_plain;f=v1.0.x%2Fdynsections.js;fp=v1.0.x%2Fdynsections.js;h=ed092c7f63048744a471efe72517e5b1af0613aa;hp=0000000000000000000000000000000000000000;hb=1d9bb866738b09085bc6f387e83690c16d26c762;hpb=f959ab46825286e6ce97c3eed82ce94c0f9798cf diff --git a/v1.0.x/dynsections.js b/v1.0.x/dynsections.js new file mode 100644 index 0000000..ed092c7 --- /dev/null +++ b/v1.0.x/dynsections.js @@ -0,0 +1,97 @@ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} +function toggleLevel(level) +{ + $('table.directory tr').each(function(){ + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l