improved javascript for code expansion

This commit is contained in:
B Mathis 2009-11-12 10:28:30 -06:00
parent 1eddd60a71
commit 0b744bae5e
1 changed files with 2 additions and 7 deletions

View File

@ -1,12 +1,7 @@
window.addEvent('domready', function() {
addPreExpanders();
$$('div.highlight').each(addExpander);
});
function addPreExpanders(){
$$('div.highlight').each(function(div){
addExpander(div);
});
}
function addExpander(div){
new Element('span',{
html: 'expand »',
@ -29,6 +24,6 @@ function toggleExpander(){
html = 'expand »';
}
$$('div.highlight span.pre_expander').each(function(span){
span.set('html',html);
span.set('html',html);
});
}