searchResultsSelector (search and click history)
Table of Contents
Description
Define a CSS selector to an element displaying search history data.
The CSS selector should not return more than one element.
Default value
<#list session.searchHistory>
<ul class="session-history-search-results list-unstyled">
<#items as h>
<li><a href="?${h.searchParams}">${h.originalQuery!} <small>(${h.totalMatching})</small></a> · <span class="text-warning">${prettyTime(h.searchDate)}</span></li>
</#items>
</ul>
</#list>
searchResultsSelector: '.session-history-search-results'