Fix #2179 missing document/comment controls when counter addon is not active

This commit is contained in:
Kijin Sung 2023-09-12 00:45:37 +09:00
parent f2c58a0a14
commit 08ce7b18a8
4 changed files with 27 additions and 28 deletions

View file

@ -1,19 +1,3 @@
jQuery(function($)
{
// Dashboard portlet UI
$('.dashboard>div>section>ul>li')
.bind('mouseenter focusin', function(){
$(this).addClass('hover').find('>.action').show();
})
.bind('mouseleave focusout', function()
{
if(!$(this).find(':focus').length)
{
$(this).removeClass('hover').find('>.action').hide();
}
});
});
function obj2Array(htObj)
{
var aRes = [];