#3055 closed defect (fixed)
IframeIO and content argument, flashing input boxes
Reported by: | guest | Owned by: | alex |
---|---|---|---|
Priority: | high | Milestone: | 1.0 |
Component: | IO | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
in io/IframeIO.js, when content variable is passed on with bind, there is code to handle this by adding a few hidden fields, but its done like this:
97 tn = document.createElement("input"); 98 fn.appendChild(tn); 99 tn.type = "hidden";
When I use this in FF i get input type="text" fields flashed a fraction of a second before the type is changed to hidden... I propose:
97 tn = document.createElement("input"); 98 tn.type = "hidden"; 99 fn.appendChild(tn);
if there isnt any known problems with this? Im no crossbrowser IE guru so I dont know, but it works fine in FF 1.5...
Change History (2)
comment:1 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 13 years ago by
Milestone: | → 1.0 |
---|
this is fixed in 0.9+'s dojo.io.iframe.