BUGFIX: Refactored bbcodehelp.js to use entwine.

This commit is contained in:
Sam Minnee 2012-03-24 16:28:13 +13:00
parent 5d1ac0961e
commit 3f3a84df8e

View File

@ -1,12 +1,11 @@
Behaviour.register({
'#BBCodeHint': {
(function($) {
$.entwine('ss', function($){
$('#BBCodeHint').entwine({
onclick: function() {
if($('BBTagsHolder').style.display == "none") {
Effect.BlindDown('BBTagsHolder');
} else{
Effect.BlindUp('BBTagsHolder');
}
return false;
$('#BBTagsHolder').toggle();
}
}
});
});
}(jQuery));