Menu

#1 Markers don't show on Google Chrome

open
nobody
None
5
2011-01-19
2011-01-19
Anonymous
No

This is due to variable being defined with global scope:

touchMapLite.marker.js on lines 148 and 149, add 'var' to the top and left variables and this works fine,

i.e.,

var top = (e.y+this.y);
var left = (e.x+this.x);

Discussion


Log in to post a comment.