changeset 942:f48f9538cb29

Don't clip the tooltip y-coordinate to window/page size .. it does not work as intended.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 13 May 2010 01:45:54 +0000
parents e8d728edb54a
children e98b0f94327e
files tooltip.js
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/tooltip.js	Wed May 12 12:40:03 2010 +0000
+++ b/tooltip.js	Thu May 13 01:45:54 2010 +0000
@@ -60,9 +60,7 @@
 			x -= (x + 250 - winW);
 		}
 
-		if (y + 50 > winH) {
-			y -= (y + 50 - winH);
-		}
+//		if (y + 50 > winH) { y -= (y + 50 - winH); }
 
 		myx = x; myy = y;