equal
deleted
inserted
replaced
2184 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>'; |
2184 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>'; |
2185 return false; |
2185 return false; |
2186 } |
2186 } |
2187 document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>'; |
2187 document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>'; |
2188 ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=<?php echo $session->sid_super; ?>', function() { |
2188 ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=<?php echo $session->sid_super; ?>', function() { |
2189 if(ajax.readyState == 4) { |
2189 if ( ajax.readyState == 4 && ajax.status == 200 ) { |
2190 document.getElementById('ajaxPageContainer').innerHTML = ajax.responseText; |
2190 document.getElementById('ajaxPageContainer').innerHTML = ajax.responseText; |
2191 fadeInfoBoxes(); |
2191 fadeInfoBoxes(); |
2192 } |
2192 } |
2193 }); |
2193 }); |
2194 } |
2194 } |