equal
deleted
inserted
replaced
2302 { |
2302 { |
2303 document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>'; |
2303 document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>'; |
2304 return false; |
2304 return false; |
2305 } |
2305 } |
2306 document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>'; |
2306 document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>'; |
2307 ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=' + ENANO_SID, function() { |
2307 ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=' + ENANO_SID, function(ajax) { |
2308 if ( ajax.readyState == 4 && ajax.status == 200 ) { |
2308 if ( ajax.readyState == 4 && ajax.status == 200 ) { |
2309 var response = String(ajax.responseText + ''); |
2309 var response = String(ajax.responseText + ''); |
2310 if ( check_json_response(response) ) |
2310 if ( check_json_response(response) ) |
2311 { |
2311 { |
2312 response = parseJSON(response); |
2312 response = parseJSON(response); |