Commit 375bbe202a8d4f19cce81ba8014820035bf53250

Authored by Valessio Brito
1 parent 41c75ede

javascript event to toggle menu links

Signed-off-by: Fabio Teixeira <fabio1079@gmail.com>
Showing 1 changed file with 5 additions and 0 deletions   Show diff stats
theme.js 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +(function($) {
  2 + jQuery(".box-2 .block-title").click(function(){
  3 + jQuery(this).parent().children("ul").stop().slideToggle();
  4 + });
  5 +})(jQuery);
... ...