From 07c4f045aac029e995919903b48838c7767f0b56 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Thu, 22 Jan 2015 22:19:17 +0000 Subject: [PATCH] Fix italicizing of non-ICAO rows --- public_html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/script.js b/public_html/script.js index c800b3f..1813ff7 100644 --- a/public_html/script.js +++ b/public_html/script.js @@ -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; }