Author: ddumont
Date: Thu Mar 22 13:07:10 2012
New Revision: 1303767
URL: http://svn.apache.org/viewvc?rev=1303767&view=rev
Log:
Issue obtaining document of the util iframe in IE.
Modified:
shindig/trunk/features/src/main/javascript/features/proxied-form-post/post.js
Modified:
shindig/trunk/features/src/main/javascript/features/proxied-form-post/post.js
URL:
http://svn.apache.org/viewvc/shindig/trunk/features/src/main/javascript/features/proxied-form-post/post.js?rev=1303767&r1=1303766&r2=1303767&view=diff
==============================================================================
---
shindig/trunk/features/src/main/javascript/features/proxied-form-post/post.js
(original)
+++
shindig/trunk/features/src/main/javascript/features/proxied-form-post/post.js
Thu Mar 22 13:07:10 2012
@@ -59,7 +59,7 @@
}
try {
- var doc = iframe.contentDocument || iframe.contentWindow.document ||
iframe.document,
+ var doc = iframe.contentDocument || (iframe.contentWindow &&
iframe.contentWindow.document) || iframe.document,
data = doc.getElementsByTagName('textarea')[0].value;
} catch (e) {}
var xhrobj = {