diff --git a/static/js/index.js b/static/js/index.js index 6482793..5f4d258 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -186,6 +186,12 @@ function getPacketColor(packetType){ break; case 'RST': color = 'purple'; + break; + case 'PING': + color = 'pink'; + break; + case 'PONG': + color = 'black'; } return color; }