From 07a887f62c6f3b07e135b2e392ebabbea211bb4f Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Tue, 12 Apr 2022 15:10:20 +0800 Subject: [PATCH] * Fix bug #17974 for objectlibs method. --- module/doc/js/objectlibs.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/module/doc/js/objectlibs.js b/module/doc/js/objectlibs.js index 8830c91235..080e036379 100644 --- a/module/doc/js/objectlibs.js +++ b/module/doc/js/objectlibs.js @@ -1,6 +1,13 @@ $(function() { if($.cookie('isFullScreen') == 1) fullScreen(); + + $('.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');}) }) /**