Make it clear it's an empty loop.

This commit is contained in:
Jürg Lehni 2011-03-05 14:26:52 +00:00
parent 06e870f69c
commit 79d5a46cab

View file

@ -38,7 +38,7 @@ var Events = {
// Remove target offsets from page coordinates
for (var el = event.target || event.srcElement; el;
point.x -= el.offsetLeft, point.y -= el.offsetTop,
el = el.offsetParent);
el = el.offsetParent) {}
return point;
}
};