clickResultsSelector (search and click history)

Description

Define a CSS selector to an element displaying click history data.

The CSS selector should not return more than one element.

Default value

<#list session.clickHistory>
  <ul class="session-history-click-results">
  <#items as h>
    <li><a href="${h.indexUrl}">${h.title}</a> &middot; <span class="text-warning">${prettyTime(h.clickDate)}</span><#if h.query??><span class="text-muted"> for &quot;${h.query!}&quot;</#if></span></li>
  </#items>
  </ul>
</#list>
clickResultsSelector: '.session-history-click-results'

Examples

clickResultsSelector: 'ul.click-results'