13 lines
232 B
JavaScript
Raw Permalink Normal View History

2008-12-17 04:11:38 +00:00
Behaviour.register({
'#BBCodeHint': {
onclick: function() {
if($('BBTagsHolder').style.display == "none") {
Effect.BlindDown('BBTagsHolder');
} else{
Effect.BlindUp('BBTagsHolder');
}
return false;
}
}
});