[richfaces-svn-commits] JBoss Rich Faces SVN: r2634 - trunk/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Aug 30 20:09:02 EDT 2007


Author: nbelaevski
Date: 2007-08-30 20:09:02 -0400 (Thu, 30 Aug 2007)
New Revision: 2634

Modified:
   trunk/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/simple-dropzone.js
Log:
http://jira.jboss.com/jira/browse/RF-749
http://jira.jboss.com/jira/browse/RF-787

Modified: trunk/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/simple-dropzone.js
===================================================================
--- trunk/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/simple-dropzone.js	2007-08-31 00:08:59 UTC (rev 2633)
+++ trunk/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/simple-dropzone.js	2007-08-31 00:09:02 UTC (rev 2634)
@@ -50,9 +50,6 @@
 	mouseover: function(event) {
 		if (window.drag){
 			this.dragEnter(event);
-			if (this.options.ondragenter) {
-				this.options.ondragenter.call(this, event);
-			}
 		}
 	},
 
@@ -63,9 +60,6 @@
 	mouseout: function(event) {
 		if (window.drag){
 			this.dragLeave(event);
-			if (this.options.ondragexit) {
-				this.options.ondragexit.call(this, event);
-			}
 		}
 	},
 	getAcceptedTypes: function() {




More information about the richfaces-svn-commits mailing list