Javascript doesn't include base path, therefore only works on the front page.

click_heatmap.module line 97:

    return '<script type="text/javascript" src="'. drupal_get_path('module', 'click_heatmap') .'/clickheat/js/clickheat.js"></script>'."\n";

Should be:

    return '<script type="text/javascript" src="'. base_path() . drupal_get_path('module', 'click_heatmap') .'/clickheat/js/clickheat.js"></script>'."\n";

Comments

deciphered’s picture

boombatower’s picture

Status: Active » Fixed

Once again thanks, I think that was overlooked when I fixed http://drupal.org/node/219641.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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

boombatower’s picture

Assigned: Unassigned » boombatower