Hide
I am making a call to my Java remove object from JS using the new multipart argument support. One of the args is a FileTransfer which works great and can be accessed on the server side just fine. However, before my callback function is called in the IE7 browser, a JS error happens in line 1303 of ennine.js:
if (batch.iframe) {
batch.iframe.parentNode.removeChild(batch.iframe);
}
It does not look to me like parentNode is not defined for the iframe in IE7 somehow.
Show
I am making a call to my Java remove object from JS using the new multipart argument support. One of the args is a FileTransfer which works great and can be accessed on the server side just fine. However, before my callback function is called in the IE7 browser, a JS error happens in line 1303 of ennine.js:
if (batch.iframe) {
batch.iframe.parentNode.removeChild(batch.iframe);
}
It does not look to me like parentNode is not defined for the iframe in IE7 somehow.