There was a js error in the click_heatmap.js file:

Basically, it had:

// $Id: click_heatmap.js,v 1.1.2.1 2009/09/28 07:09:58 boombatower Exp $
2
3 /**
4 * If inside the ClickHeat iframe then remove admin menu.
5 */
6 Drupal.behaviors.click_heatmap = function()) {
Uncaught SyntaxError: Unexpected token )
7 if (window.location.href != parent.location.href) {
8 $('#admin-menu').remove();
9 }
10 }

On line 6, the function part has an extra bracket. It should have:

Drupal.behavious.click_heatmap = function(){

So that's that.

Comments

mcrittenden’s picture

Title: js error » JS Error: extra closing parenthesis
Priority: Normal » Critical
bonvga’s picture

subscribe.

philbar’s picture

Status: Active » Closed (duplicate)