[richfaces-svn-commits] JBoss Rich Faces SVN: r14432 - branches/community/3.3.X/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Jun 2 09:39:43 EDT 2009


Author: Alex.Kolonitsky
Date: 2009-06-02 09:39:42 -0400 (Tue, 02 Jun 2009)
New Revision: 14432

Modified:
   branches/community/3.3.X/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js
Log:
toolTip javascript hide() doesn't work on safari
https://jira.jboss.org/jira/browse/RF-5597

Modified: branches/community/3.3.X/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js
===================================================================
--- branches/community/3.3.X/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js	2009-06-02 10:37:03 UTC (rev 14431)
+++ branches/community/3.3.X/ui/tooltip/src/main/resources/org/richfaces/renderkit/html/scripts/tooltip.js	2009-06-02 13:39:42 UTC (rev 14432)
@@ -313,53 +313,60 @@
 		}
 		this.hintParentElement = null;
 		this.isMouseOvered = false;
-		if(this.onhide!=null) 
-		{
-		 this.onhide(e);
+		if(this.onhide != null) {
+			this.onhide(e);
 		}
 		
 	},
 	
 	doHide: function(e){
-		if (this.hidingTimerHandle) return;
+		if (this.hidingTimerHandle) { 
+			return;
+		}
 		
 		this.eventCopy = null;
 
-		if (!e) var e = window.event;
+		if (!e) { 
+			var e = window.event;
+		}
 		
-		var relTarg = e.relatedTarget || e.toElement;
+		var relTarg = null;
+		if (e.type == 'mouseout' || e.type == 'mouseover') {
+			relTarg = e.relatedTarget || e.toElement;
+		}
 		
-		if (this.ffcheck(relTarg)) return;
+		if (this.ffcheck(relTarg)) { 
+			return;
+		}
 		
 		var className;
-		if (relTarg)
-		{
+		if (relTarg) {
 			try {
 				className = relTarg.className;
 				if (className!="anonymous-div");
-					if (this.detectAncestorNode(relTarg,this.toolTip)) return;
+					if (this.detectAncestorNode(relTarg,this.toolTip)) { 
+						return;
+					}
 			} catch (e) {;}
 		}
 
-		if (this.activationTimerHandle)
-		{
+		if (this.activationTimerHandle) {
 			window.clearTimeout(this.activationTimerHandle);
 			this.activationTimerHandle = undefined;
 		}
-		if (this.hideDelay>0)
-		{
+		
+		if (this.hideDelay > 0) {
 			var event = A4J.AJAX.CloneObject(e, false);
-			this.hidingTimerHandle = window.setTimeout(function()
-				{
-					this.hideDiv(event);
-					if (this.hidingTimerHandle)
-					{
-						window.clearTimeout(this.hidingTimerHandle);
-						this.hidingTimerHandle = undefined;				
-					}					
-				}.bindAsEventListener(this), this.hideDelay);
+			this.hidingTimerHandle = window.setTimeout(function() {
+				this.hideDiv(event);
+				if (this.hidingTimerHandle) {
+					window.clearTimeout(this.hidingTimerHandle);
+					this.hidingTimerHandle = undefined;				
+				}					
+			}.bindAsEventListener(this), this.hideDelay);
+		} else { 
+			this.hideDiv();
 		}
-		else this.hideDiv();
 	},
 	
 	doEnable: function(){




More information about the richfaces-svn-commits mailing list