the rotor block is not showing in certain regions: side bars are ok but other regions (tried with bluemarine and my own theme) are not. the html code is there with a display:none style. The problem is that the js file is not being added.

Comments

Robaj’s picture

Try this, I know it's not beautiful, but working :)

Add this code to the end of the rotor.js.

function addEvent(obj, evType, fn)
{
if (obj.addEventListener)
{
obj.addEventListener(evType, fn, true);
return true;
}
else if (obj.attachEvent)
{
var r = obj.attachEvent("on"+evType, fn);
return r;
}
else
{
return false;
}
}

addEvent(window, 'load', init_rotor);

mrfelton’s picture

Assigned: Unassigned » mrfelton
Status: Active » Postponed (maintainer needs more info)

Please try with the latest version and let me know if this is still a problem.

mrfelton’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

I'm closing this after not hearing anything for several months. If you still have a problem with this, please o[pen a new ticket.