Module: nagvis Branch: master Commit: b72485e9438325cece98ca7ec61b0915e2e5e921 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=b72485e9438325cece98ca7ec61b0915e2e5e921
Author: Lars Michelsen <[email protected]> Date: Wed Sep 2 18:05:04 2009 +0200 #93 fixed mouse tracking function of WUI --- share/wui/includes/js/wui.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/share/wui/includes/js/wui.js b/share/wui/includes/js/wui.js index 8faf005..02762d0 100644 --- a/share/wui/includes/js/wui.js +++ b/share/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
