Subversion Repositories LCARS

Compare Revisions

Last modification

Regard whitespace Rev 150 → Rev 149

/trunk/index.phtml
494,15 → 494,12
else
{
features.push('<span class="unavailable"'
+ ' title="<?php echo _('Cookies supported, but no data for this site'); ?>"'
+ '>' + cookiesText + '<\/span>');
+' title="Cookies supported, but no data for this site">' + cookiesText + '<\/span>');
}
}
else
{
features.push('<span class="offline"'
+ ' title="<?php echo _('Cookies supported, but disabled'); ?>"'
+ '>' + cookiesText + '<\/span>');
features.push('<span class="offline" title="Cookies supported, but disabled">' + cookiesText + '<\/span>');
}
}
 
535,13 → 532,11
{
features.push('<span title="'
+ navigator.plugins.length
+ ' <?php echo _('plugins installed'); ?>">Plugins<\/span>');
+ ' plugins installed">Plugins<\/span>');
}
else
{
features.push('<span class="unavailable"'
+ ' title="<?php echo _('Plugins supported, but none detected'); ?>"'
+ '>Plugins<\/span>');
features.push('<span class="unavailable" title="Plugins supported, but none detected">Plugins<\/span>');
}
}
 
560,9 → 555,7
}
var sFeatures = getFeatures();
document.write('<span id="features" title="'
+ stripTags(sFeatures) + '">' + sFeatures
+ '<\/span>');
document.write('<span id="features" title="' + stripTags(sFeatures) + '">' + sFeatures + '<\/span>');
 
var oFeatures;
var oFeaturesHtml;