Skip to content
Snippets Groups Projects
Commit 694edecd authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed AJAX in index for IE FS#1367

darcs-hash:20080409171637-7ad00-1a76786332c0b44ae6ff1d1b93007afb02fac97e.gz
parent 50fbebce
No related branches found
Tags release_candidate_2008-04-11
No related merge requests found
......@@ -25,7 +25,7 @@ index = {
var elem = items[i];
// attach action to make the link clickable by AJAX
addEvent(elem,'click',function(event){ return index.toggle(event,this); });
addEvent(elem,'click',function(e){ return index.toggle(e,this); });
}
},
......@@ -37,7 +37,7 @@ index = {
* @author Andreas Gohr <andi@splitbrain.org>
* @author Ben Coburn <btcoburn@silicodon.net>
*/
toggle: function(event,clicky){
toggle: function(e,clicky){
var listitem = clicky.parentNode.parentNode;
// if already open, close by removing the sublist
......@@ -45,6 +45,7 @@ index = {
if(sublists.length && listitem.className=='open'){
sublists[0].style.display='none';
listitem.className='closed';
e.preventDefault();
return false;
}
......@@ -52,6 +53,7 @@ index = {
if(sublists.length && listitem.className=='closed'){
sublists[0].style.display='';
listitem.className='open';
e.preventDefault();
return false;
}
......@@ -80,8 +82,8 @@ index = {
}
};
ajax.runAJAX(clicky.search.substr(1)+'&call=index');
e.preventDefault();
return false;
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment