Module: nagvis Branch: nagvis-1.4 Commit: b7ce9e2fb115e7b772dc8a41716db74f9ad0709b URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=b7ce9e2fb115e7b772dc8a41716db74f9ad0709b
Author: Lars Michelsen <[email protected]> Date: Wed Sep 2 18:05:04 2009 +0200 #93 fixed mouse tracking function of WUI --- nagvis/wui/includes/js/wui.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/nagvis/wui/includes/js/wui.js b/nagvis/wui/includes/js/wui.js index 8faf005..02762d0 100644 --- a/nagvis/wui/includes/js/wui.js +++ b/nagvis/wui/includes/js/wui.js @@ -135,7 +135,7 @@ function track_mouse(e) { if (event.pageX || event.pageY) { posx = event.pageX; posy = event.pageY; - } else if (e.clientX || event.clientY) { + } else if (event.clientX || event.clientY) { posx = event.clientX; posy = event.clientY; } ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
