diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js index 92c99e1563..f59d9d3706 100644 --- a/pandora_console/include/javascript/tree/TreeController.js +++ b/pandora_console/include/javascript/tree/TreeController.js @@ -66,6 +66,8 @@ TreeController = { // Load leaf counters function _processNodeCounters (container, counters, type) { + var hasCounters = false; + if (typeof counters != 'undefined') { function _processNodeCounterTitle (container, elementType, counterType) { @@ -264,11 +266,15 @@ TreeController = { // Close the parentheses $counters.append(")"); + + hasCounters = true; } // Add the counters html to the container container.append($counters); } + + return hasCounters; // Load the counters asynchronously // else if (typeof element.searchCounters != 'undefined' && element.searchCounters) { // var $counters = $("
");