1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-12 09:44:38 +02:00
This commit is contained in:
Ryan Cramer
2023-06-28 09:14:22 -04:00
parent c8e9b6c65a
commit 1749ba17ac
4 changed files with 8 additions and 5 deletions

View File

@@ -164,7 +164,7 @@ var ProcessWireAdmin = {
function mouseleaver() {
if(timer) clearTimeout(timer);
timer = setTimeout(function() {
if($ul.filter(":hover").length || $a.filter(":hover").length) {
if(($ul.length && $ul[0].matches(':hover')) || ($a.length && $a[0].matches(':hover'))) {
return;
}
$ul.fadeOut('fast');

File diff suppressed because one or more lines are too long