diff content/river.js @ 332:e08a381e3ff7

remove publication timestamps from river view, as they are misleading now that the river view orders by received timestamp; this leaves the byline a bit wonky; i will still have to fix that
author Myk Melez <myk@mozilla.org>
date Mon, 20 Oct 2008 01:38:56 -0700
parents 00bcb31061f4
children 398b9ca0264b
line wrap: on
line diff
--- a/content/river.js	Mon Oct 20 01:31:30 2008 -0700
+++ b/content/river.js	Mon Oct 20 01:38:56 2008 -0700
@@ -787,16 +787,16 @@
       else if (message.source)
         bylineBox.appendChild(this._document.createTextNode(message.source.name));
 
-      // Timestamp
-      let lastUpdated = SnowlUtils._formatDate(message.timestamp);
-      if (lastUpdated) {
-        let timestamp = this._document.createElementNS(HTML_NS, "span");
-        timestamp.className = "timestamp";
-        timestamp.appendChild(document.createTextNode(lastUpdated));
-        if (bylineBox.hasChildNodes())
-          bylineBox.appendChild(this._document.createTextNode(" - "));
-        bylineBox.appendChild(timestamp);
-      }
+      //// Timestamp
+      //let lastUpdated = SnowlUtils._formatDate(message.timestamp);
+      //if (lastUpdated) {
+      //  let timestamp = this._document.createElementNS(HTML_NS, "span");
+      //  timestamp.className = "timestamp";
+      //  timestamp.appendChild(document.createTextNode(lastUpdated));
+      //  if (bylineBox.hasChildNodes())
+      //    bylineBox.appendChild(this._document.createTextNode(" - "));
+      //  bylineBox.appendChild(timestamp);
+      //}
 
       // Body
       if (this._bodyButton.checked) {