From 19c7d6c6fdff5fb94dfedd8960a78646f01cca94 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Tue, 27 Apr 2010 17:47:09 -0400 Subject: [PATCH] Forgot to also set a flag that preventing the next page from prefetching. --- media/js/newsblur/reader.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media/js/newsblur/reader.js b/media/js/newsblur/reader.js index d82923cbc..49c79d573 100644 --- a/media/js/newsblur/reader.js +++ b/media/js/newsblur/reader.js @@ -608,7 +608,8 @@ } if (this.flags['iframe_prefetching_story_locations']) { var stories_count = this.cache['iframe_story_positions_keys'].length; - this.prefetch_story_locations_in_story_frame(stories_count+1); + this.flags.story_frame_prefetched = false; + this.prefetch_story_locations_in_story_frame(stories_count); } } },