changeset 16:eb7f37f29848

Added google group, getsatisfaction, twitter
author Atul Varma <varmaa@toolness.com>
date Mon, 02 Mar 2009 16:19:25 -0800
parents 51cd570b96a1
children 6389be695a1a
files about-mozilla.js
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/about-mozilla.js	Mon Mar 02 15:59:00 2009 -0800
+++ b/about-mozilla.js	Mon Mar 02 16:19:25 2009 -0800
@@ -21,6 +21,15 @@
    processFeed: processBlogFeed},
   {name: "Mercurial",
    url: "https://ubiquity.mozilla.com/hg/ubiquity-firefox/rss-log",
+   processFeed: processBlogFeed},
+  {name: "Google Group",
+   url: "http://groups.google.com/group/ubiquity-firefox/feed/rss_v2_0_msgs.xml",
+   processFeed: processBlogFeed},
+  {name: "Get Satisfaction",
+   url: "http://getsatisfaction.com/mozilla/products/mozilla_ubiquity.rss?sort=recently_created",
+   processFeed: processBlogFeed},
+  {name: "Twitter",
+   url: "http://search.twitter.com/search.atom?q=ubiquity",
    processFeed: processBlogFeed}
 ];
 
@@ -48,4 +57,7 @@
   function() {
     jQuery.each(FEEDS, function(i) { showFeed(this); });
     $("#issue").fadeIn();
+
+    var entries = $("#issue .entry");
+    $(document.body).width(entries.outerWidth() * entries.length);
   });