# HG changeset patch # User Atul Varma # Date 1235855283 28800 # Node ID 2be94bbd7f04360566998b179c41e307ef013183 # Parent 4dd50afc32c85ce1d4df53159d1c7b89a88d5b7e Now processing the original issue in a hidden div. diff -r 4dd50afc32c8 -r 2be94bbd7f04 about-mozilla.css --- a/about-mozilla.css Sat Feb 28 13:02:50 2009 -0800 +++ b/about-mozilla.css Sat Feb 28 13:08:03 2009 -0800 @@ -1,3 +1,7 @@ body { font-family: Helvetica; } + +#raw-entry { + display: none; +} diff -r 4dd50afc32c8 -r 2be94bbd7f04 about-mozilla.html --- a/about-mozilla.html Sat Feb 28 13:02:50 2009 -0800 +++ b/about-mozilla.html Sat Feb 28 13:08:03 2009 -0800 @@ -8,6 +8,8 @@ +
+
diff -r 4dd50afc32c8 -r 2be94bbd7f04 about-mozilla.js --- a/about-mozilla.js Sat Feb 28 13:02:50 2009 -0800 +++ b/about-mozilla.js Sat Feb 28 13:08:03 2009 -0800 @@ -1,5 +1,5 @@ function onIssueLoaded() { - $("a[name]").each( + $("#raw-entry a[name]").each( function(i) { var headline = $(this).next().text(); var body = $("
"); @@ -13,7 +13,7 @@ $(window).ready( function() { - $(document.body).load("issue-2009-02-24.html .entry", - null, - onIssueLoaded); + $("#raw-entry").load("issue-2009-02-24.html .entry", + null, + onIssueLoaded); });