Skip to content
Snippets Groups Projects
Commit d38b3479 authored by JediKev's avatar JediKev
Browse files

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.
parent 308ca303
No related branches found
No related tags found
No related merge requests found
...@@ -506,7 +506,7 @@ var scp_prep = function() { ...@@ -506,7 +506,7 @@ var scp_prep = function() {
// Auto fetch queue counts // Auto fetch queue counts
$(function() { $(function() {
var fired = false; var fired = false;
$('li.top-queue.item').hover(function() { $('#customQ_nav li.item').hover(function() {
if (fired) return; if (fired) return;
fired = true; fired = true;
$.ajax({ $.ajax({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment