From c1084ab33569121a2fe92db7450f2125ec158c3a Mon Sep 17 00:00:00 2001 From: bergware Date: Thu, 21 Mar 2019 03:32:18 +0100 Subject: [PATCH] Revert "Added hover event to help text" This reverts commit 8533ed73fcbad35e2b62de62d671d9481ad2848a. --- plugins/dynamix/include/DefaultPageLayout.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/dynamix/include/DefaultPageLayout.php b/plugins/dynamix/include/DefaultPageLayout.php index 29171ff3e..319e5880e 100644 --- a/plugins/dynamix/include/DefaultPageLayout.php +++ b/plugins/dynamix/include/DefaultPageLayout.php @@ -612,9 +612,9 @@ $(function() { node = node.prev(); name = node.prop('nodeName').toLowerCase(); } - node.css('cursor','help').click(function(){$('#helpinfo'+i).toggle('slow');}).hover(function(){delay=setTimeout(function(){$('#helpinfo'+i).show('slow');},1000);},function(){clearTimeout(delay);$('#helpinfo'+i).hide('slow');}); + node.css('cursor','help').click(function(){$('#helpinfo'+i).toggle('slow');}); } else { - if (node.html() && (name!='tr' || node.children('td:first').html())) node.css('cursor','help').click(function(){$('#helpinfo'+i).toggle('slow');}).hover(function(){delay=setTimeout(function(){$('#helpinfo'+i).show('slow');},1000);},function(){clearTimeout(delay);$('#helpinfo'+i).hide('slow');}); + if (node.html() && (name!='tr' || node.children('td:first').html())) node.css('cursor','help').click(function(){$('#helpinfo'+i).toggle('slow');}); } }); });