Search and Top Navigation
Ticket #3595: fix-iframe-placeholder.patch
File fix-iframe-placeholder.patch, 0.5 KB (added by alan.castro, November 15, 2008 09:21PM UTC)
iframe fix on placeholder
Index: ui.sortable.js
===================================================================
--- ui.sortable.js (revision 901)
+++ ui.sortable.js (working copy)
@@ -303,7 +303,9 @@
if(!className) {
el.style.visibility = "hidden";
document.body.appendChild(el);
- el.innerHTML = self.currentItem[0].innerHTML;
+ if ($.browser.msie) {
+ el.innerHTML = self.currentItem[0].innerHTML;
+ }
document.body.removeChild(el);
};
Download in other formats:
Original Format
File fix-iframe-placeholder.patch, 0.5 KB (added by alan.castro, November 15, 2008 09:21PM UTC)
iframe fix on placeholder
Index: ui.sortable.js
===================================================================
--- ui.sortable.js (revision 901)
+++ ui.sortable.js (working copy)
@@ -303,7 +303,9 @@
if(!className) {
el.style.visibility = "hidden";
document.body.appendChild(el);
- el.innerHTML = self.currentItem[0].innerHTML;
+ if ($.browser.msie) {
+ el.innerHTML = self.currentItem[0].innerHTML;
+ }
document.body.removeChild(el);
};