This is caused because the variable 'i' in extractRange is declared as a global
variable:
function extractRange(ranges, coord) {
...
for (i = 0; i < axes.length; ++i) {
could you change to:
for (var i = 0; i < axes.length; ++i) {
Original issue reported on code.google.com by alexande...@firstlinesoftware.com on 7 Nov 2011 at 1:21
Original issue reported on code.google.com by
alexande...@firstlinesoftware.com
on 7 Nov 2011 at 1:21