X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=master%2Fdynsections.js;fp=master%2Fdynsections.js;h=85e183690954af49931335b87a063b2c078d4546;hb=25440bcce7a785032dbb7e9cc5e16cdc62ac18a8;hp=0000000000000000000000000000000000000000;hpb=ea5470824da8c22c682a187bdc62a906af18e33d;p=m6w6%2Fext-propro diff --git a/master/dynsections.js b/master/dynsections.js new file mode 100644 index 0000000..85e1836 --- /dev/null +++ b/master/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