Index: lams_tool_laqa/web/authoring/newQuestionBox.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/authoring/newQuestionBox.jsp,v diff -u -r1.25.2.2 -r1.25.2.3 --- lams_tool_laqa/web/authoring/newQuestionBox.jsp 17 Apr 2015 16:14:03 -0000 1.25.2.2 +++ lams_tool_laqa/web/authoring/newQuestionBox.jsp 24 Apr 2015 10:00:51 -0000 1.25.2.3 @@ -91,13 +91,15 @@ heightOffSet = document.getElementById('wizardDiv').offsetHeight; } - if (window.resizeIframe) { - window.resizeIframe(heightOffSet); - } else if (window.parent && window.parent.resizeIframe) { - window.parent.resizeIframe(heightOffSet); - } else if (window.top && window.top.resizeIframe) { - window.top.resizeIframe(heightOffSet); - } + try { + if (window.parent && window.parent.resizeIframe) { + window.parent.resizeIframe(heightOffSet); + } else if (window.top && window.top.resizeIframe) { + window.top.resizeIframe(heightOffSet); + } + } catch(err) { + // mute cross-domain iframe access errors + } heightOffSet = heightOffSet * -1; });