Ticket #4327: iframe.patch
| File iframe.patch, 0.7 kB (added by guest, 17 months ago) |
|---|
-
iframe.js
233 233 if(!fn[x]){ 234 234 var tn; 235 235 if(dojo.isIE){ 236 tn = dojo.doc.createElement("<input type='hidden' name='"+x+"' value='"+content[x]+"'>"); 237 fn.appendChild(tn); 236 tn = dojo.doc.createElement("<input type='hidden' name='"+x+"'>"); 238 237 }else{ 239 238 tn = dojo.doc.createElement("input"); 240 fn.appendChild(tn);241 239 tn.type = "hidden"; 242 240 tn.name = x; 243 tn.value = content[x];244 241 } 242 tn.value = content[x]; 243 fn.appendChild(tn); 245 244 ioArgs._contentToClean.push(x); 246 245 }else{ 247 246 fn[x].value = content[x];