From 1ff73b0d9c71336feebae0550ffc3e19709c2be9 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Sun, 11 Apr 2010 21:49:38 -0400 Subject: [PATCH] Position offsets changed in jquery 1.4.2 --- media/js/newsblur/reader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media/js/newsblur/reader.js b/media/js/newsblur/reader.js index e77064217..f094af5a1 100644 --- a/media/js/newsblur/reader.js +++ b/media/js/newsblur/reader.js @@ -1208,8 +1208,8 @@ if ($story && $story.length) { this.cache.iframe_stories[story.id] = $story; var position_original = parseInt($story.offset().top, 10); - var position_offset = parseInt($story.offsetParent().scrollTop(), 10); - var position = position_original + position_offset; + // var position_offset = parseInt($story.offsetParent().scrollTop(), 10); + var position = position_original; // + position_offset; this.cache.iframe_story_positions[position] = story; this.cache.iframe_story_positions_keys.push(position); }