32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
}
}
function checkState(){
expandMap = history.state || {};
if( '*' in expandMap ) toggleAll(outer_ul, true);
for( var id in expandMap ){
if( id!=='*' ) toggleDir(gebi(id), true);
}
}
function belowSubdir(node){
do{
node = node.parentNode;
if( node==subdir ) return true;
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
}
}
function checkState(){
expandMap = history.state || {};
if( '*' in expandMap ) toggleAll(outer_ul, true);
for( var id in expandMap ){
if( id!=='*' ) toggleDir(document.getElementById(id), true);
}
}
function belowSubdir(node){
do{
node = node.parentNode;
if( node==subdir ) return true;
|