Fix italicizing of non-ICAO rows

This commit is contained in:
Oliver Jowett 2015-01-22 22:19:17 +00:00
parent f76842d186
commit 07c4f045aa

View file

@ -73,7 +73,7 @@ function processReceiverUpdate(data) {
if (hex[0] === '~') {
// Non-ICAO address
plane.tr.cells[0].textContent = hex.substring(1);
plane.tr.css('font-style', 'italic');
$(plane.tr).css('font-style', 'italic');
} else {
plane.tr.cells[0].textContent = hex;
}