+
+ // This may have broken history's in-sorted-order invariant
+ var hi = history.indexOf(message);
+ if ((history[hi-1] && history[hi-1].Time > message.Time) ||
+ (history[hi+1] && history[hi+1].Time < message.Time)) {
+ history.splice(hi,1);
+ rcaddmessagetohistory(message);
+ }
+
+ // Update the UI
+ var spans = message.UI.getElementsByTagName("span");
+ for (var i in spans) {
+ if (spans[i].getAttribute && spans[i].getAttribute("class") == "timestamp") {
+ spans[i].firstChild.data = rcformattime(message.Time);
+ }
+ }