Update of /cvsroot/magicajax/magicajax/Core/script
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13790/Core/script
Modified Files:
AjaxCallObject.js
Log Message:
Fixed another issue about IE and Server.Transfer
Index: AjaxCallObject.js
===================================================================
RCS file: /cvsroot/magicajax/magicajax/Core/script/AjaxCallObject.js,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** AjaxCallObject.js 23 Nov 2005 19:34:23 -0000 1.22
--- AjaxCallObject.js 24 Nov 2005 20:14:05 -0000 1.23
***************
*** 584,589 ****
AjaxCallObject.prototype.SetHtmlOfPage = function(html)
{
document.write(html);
! document.close();
}
--- 584,590 ----
AjaxCallObject.prototype.SetHtmlOfPage = function(html)
{
+ document.close(); // for IE
document.write(html);
! document.close(); // for Firefox
}
|