You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pm...@apache.org on 2007/08/20 18:07:21 UTC

svn commit: r567736 - /myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/javascript/domLib.js

Author: pmahoney
Date: Mon Aug 20 09:07:21 2007
New Revision: 567736

URL: http://svn.apache.org/viewvc?rev=567736&view=rev
Log:
TOMAHAWK-996: Removed invalid condition and alert

Modified:
    myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/javascript/domLib.js

Modified: myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/javascript/domLib.js
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/javascript/domLib.js?rev=567736&r1=567735&r2=567736&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/javascript/domLib.js (original)
+++ myfaces/tomahawk/trunk/core/src/main/resources/org/apache/myfaces/custom/schedule/resource/javascript/domLib.js Mon Aug 20 09:07:21 2007
@@ -532,8 +532,6 @@
 
 function domLib_getEventPosition(in_eventObj)
 {
-	if(event.type != 'mousemove')
-		alert('event.type: ' + in_eventObj.type);
 	var eventPosition = new Hash('x', 0, 'y', 0, 'scrollX', 0, 'scrollY', 0);
 	// IE varies depending on standard compliance mode
 	if (domLib_isIE)