[richfaces-svn-commits] JBoss Rich Faces SVN: r16007 - branches/community/3.3.X/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 Nov 26 07:00:45 EST 2009


Author: amarkhel
Date: 2009-11-26 07:00:44 -0500 (Thu, 26 Nov 2009)
New Revision: 16007

Modified:
   branches/community/3.3.X/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/drag-indicator.js
Log:
Fix iframe isuue under https

Modified: branches/community/3.3.X/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/drag-indicator.js
===================================================================
--- branches/community/3.3.X/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/drag-indicator.js	2009-11-25 22:53:45 UTC (rev 16006)
+++ branches/community/3.3.X/ui/drag-drop/src/main/resources/org/richfaces/renderkit/html/scripts/drag-indicator.js	2009-11-26 12:00:44 UTC (rev 16007)
@@ -146,7 +146,7 @@
 	initIFrame: function() {
 		if (DragIndicator.isIE6 && !this.iframe) {
 			var fakeElement = $(document.createElement("div"));
-			fakeElement.innerHTML = '<iframe class=\"rich-dragindicator-iframe\" src="" scrolling="no" frameborder="0" style="filter:Alpha(opacity=0);position:absolute;top:0px;left:0px;display:block"></iframe>';
+			fakeElement.innerHTML = '<iframe class=\"rich-dragindicator-iframe\" src=\"javascript:''\" scrolling="no" frameborder="0" style="filter:Alpha(opacity=0);position:absolute;top:0px;left:0px;display:block"></iframe>';
 			this.iframe = $(fakeElement.getElementsByTagName("iframe")[0]);
 			fakeElement.removeChild(this.iframe);
 			this.realParent.appendChild(this.iframe);



More information about the richfaces-svn-commits mailing list