Skip to content

Commit

Permalink
BUGFIX: Refactored bbcodehelp.js to use entwine.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Minnee committed Mar 24, 2012
1 parent 5d1ac09 commit 3f3a84d
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions javascript/bbcodehelp.js
@@ -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));

0 comments on commit 3f3a84d

Please sign in to comment.