diff --git a/module/doc/js/tablecontents.js b/module/doc/js/tablecontents.js index a1173177ae..a3e3e75859 100644 --- a/module/doc/js/tablecontents.js +++ b/module/doc/js/tablecontents.js @@ -11,4 +11,11 @@ $(function() } $('#main .main-content li.has-list').addClass('open in'); + + $('.menu-actions > a').click(function() + { + $(this).parent().hasClass('open') ? $(this).css('background', 'none') : $(this).css('background', '#f1f1f1'); + }) + + $('.menu-actions > a').blur(function() {$(this).css('background', 'none');}) })