X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=dynsections.js;fp=dynsections.js;h=0000000000000000000000000000000000000000;hb=1d9bb866738b09085bc6f387e83690c16d26c762;hp=ed092c7f63048744a471efe72517e5b1af0613aa;hpb=f959ab46825286e6ce97c3eed82ce94c0f9798cf;p=m6w6%2Fext-propro diff --git a/dynsections.js b/dynsections.js deleted file mode 100644 index ed092c7..0000000 --- a/dynsections.js +++ /dev/null @@ -1,97 +0,0 @@ -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