From 4b184c5fc3d493d2b76b50aabb2ce2a65a488f4b Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 3 Aug 2012 12:22:18 -0700 Subject: [PATCH] Put timestamps in a separate span This makes them easier to update separately, and also easier to style. --- webclient/rc.html | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/webclient/rc.html b/webclient/rc.html index e497135..573ee6a 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -56,6 +56,9 @@ padding: 0px 5px 55px 5px; vertical-align: bottom } + .timestamp { + margin-right: 0.8em; + } img { width: 1px; height: 1px; } iframe { display: none } #status span { margin-right: 10px; } @@ -149,9 +152,13 @@ } if (!message.UI) { - var text = (message.Time ? rcformattime(message.Time) : "") + " " + message.Text; + var timestamp_text = message.Time ? rcformattime(message.Time) : ""; + var timestamp = document.createElement("span"); + timestamp.setAttribute("class", "timestamp"); + timestamp.appendChild(document.createTextNode(timestamp_text)); message.UI = document.createElement("div"); - message.UI.appendChild(document.createTextNode(text)); + message.UI.appendChild(timestamp); + message.UI.appendChild(document.createTextNode(message.Text)); } var h = document.getElementById("history"); if (message_i + 1 < history.length) { -- 2.44.1