Subversion Repositories LCARS

Compare Revisions

Last modification

Ignore whitespace Rev 130 → Rev 131

/trunk/index.phtml
373,6 → 373,8
<tr>
<th><?php echo _('Display'); ?>:</th>
<td><script type="text/javascript">
var runAsync = jsx.dom.timeout.runAsync;
(function () {
var screenInfo = jsx.dom.window.screenInfo;
431,7 → 433,7
});
 
var oColorDepth;
jsx.dom.timeout.runAsync(function () {
runAsync(function () {
if (typeof oColorDepth == "undefined")
{
oColorDepth = document.getElementById("colorDepth");
456,7 → 458,7
document.write('<span id="ua" title="' + ua + '">' + ua + '<\/span>');
 
var oUA;
jsx.dom.timeout.runAsync(function () {
runAsync(function () {
if (typeof oUA == "undefined")
{
oUA = document.getElementById("ua");
616,7 → 618,7
document.write('<span id="features" title="' + sFeatures + '">' + sFeatures + '<\/span>');
 
var oFeatures;
var tFeatures = window.setTimeout(function () {
var tFeatures = runAsync(function () {
if (typeof oFeatures == "undefined")
{
oFeatures = document.getElementById("features");
629,6 → 631,8
/* Converts CREs */
oFeatures.title = oFeatures.innerHTML;
}
 
tFeatures = this.run();
}, 1000);
}());
</script><noscript><?php echo _('N/A'); ?></noscript></td>