|
From: Jon O. <jon...@us...> - 2006-09-17 21:02:17
|
Update of /cvsroot/mxbb/core/modules/mx_shared/ajax In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18618/modules/mx_shared/ajax Modified Files: AjaxRequest_comp.js Log Message: Minor htaccess fix Index: AjaxRequest_comp.js =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_shared/ajax/AjaxRequest_comp.js,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AjaxRequest_comp.js 28 Apr 2006 14:29:38 -0000 1.2 --- AjaxRequest_comp.js 17 Sep 2006 21:02:11 -0000 1.3 *************** *** 12,16 **** // site, or any other form where the code is actually being used. You // may not put the plain javascript up on your site for download or ! // include it in your javascript libraries for download. // If you wish to share this code with others, please just point them // to the URL instead. --- 12,16 ---- // site, or any other form where the code is actually being used. You // may not put the plain javascript up on your site for download or ! // include it in your javascript libraries for download. // If you wish to share this code with others, please just point them // to the URL instead. *************** *** 69,73 **** req.status =req.xmlHttpRequest.status; req.statusText =req.xmlHttpRequest.statusText; ! req.responseText =req.xmlHttpRequest.responseText; req.responseXML =req.xmlHttpRequest.responseXML; if(typeof(req.onComplete)=="function"){req.onComplete(req);}if(req.xmlHttpRequest.status==200 && typeof(req.onSuccess)=="function"){req.onSuccess(req);}else if(typeof(req.onError)=="function"){req.onError(req);}delete req.xmlHttpRequest['onreadystatechange']; --- 69,73 ---- req.status =req.xmlHttpRequest.status; req.statusText =req.xmlHttpRequest.statusText; ! req.responseText =req.xmlHttpRequest.responseText; // IE req.responseXML =req.xmlHttpRequest.responseXML; if(typeof(req.onComplete)=="function"){req.onComplete(req);}if(req.xmlHttpRequest.status==200 && typeof(req.onSuccess)=="function"){req.onSuccess(req);}else if(typeof(req.onError)=="function"){req.onError(req);}delete req.xmlHttpRequest['onreadystatechange']; |