mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
Behaviour.register({
|
|
'#BBCodeHint': {
|
|
onclick: function() {
|
|
if($('BBTagsHolder').style.display == "none") {
|
|
Effect.BlindDown('BBTagsHolder');
|
|
} else{
|
|
Effect.BlindUp('BBTagsHolder');
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
});
|