From d38b3479725b656e91effe61d48a433a162f2d25 Mon Sep 17 00:00:00 2001
From: JediKev <kevin@enhancesoft.com>
Date: Mon, 9 Apr 2018 15:42:15 -0500
Subject: [PATCH] issue: Search Tab Counts

This addresses an issue where hovering on the Search Tab does not trigger
the counts AJAX call. This adds the AJAX call to the search tab so any
queue tab will trigger the counts AJAX.
---
 scp/js/scp.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scp/js/scp.js b/scp/js/scp.js
index b40837fc0..508123366 100644
--- a/scp/js/scp.js
+++ b/scp/js/scp.js
@@ -506,7 +506,7 @@ var scp_prep = function() {
   // Auto fetch queue counts
   $(function() {
     var fired = false;
-    $('li.top-queue.item').hover(function() {
+    $('#customQ_nav li.item').hover(function() {
       if (fired) return;
       fired = true;
       $.ajax({
-- 
GitLab