When not using jq module, hoverIntent is not added as an option for the pager event setting.

Comments

recrit’s picture

the attach patch fixes this line of code:

  if ((module_exists('jq') && jq_add('hoverIntent')) || (module_exists('hoverintent') && hoverintent_add())) {

hoverintent_add() does not return anything so the second part of this condition will always return FALSE.
Fix:

  if ((module_exists('jq') && jq_add('hoverIntent')) || (module_exists('hoverintent') && function_exists('hoverintent_add'))) {
redndahead’s picture

Status: Active » Fixed

Patch committed thank you

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.