Fixing odd stories showing up on wrong feed bug. Also fixed overflow styling issue when resizing.

This commit is contained in:
Samuel Clay 2010-04-14 18:10:16 -04:00
parent 15d7622868
commit b7d7b4b1a0
2 changed files with 15 additions and 6 deletions

View file

@ -120,7 +120,8 @@ a img {
.content-pane {
display: none;
overflow: auto !important;
overflow-x: auto !important;
overflow-y: hidden !important;
width: auto !important;
height: auto !important;
}

View file

@ -517,12 +517,20 @@
post_open_feed: function(e, data, first_load) {
var stories = data.stories;
var tags = data.tags;
var feed_id;
this.story_titles_clear_loading_endbar();
this.create_story_titles(stories);
this.hover_over_story_titles();
this.make_story_feed_entries(stories, first_load);
this.show_feed_view_taskbar_view();
for (var s in stories) {
feed_id = stories[s].story_feed_id;
break;
}
if (this.active_feed == feed_id) {
this.story_titles_clear_loading_endbar();
this.create_story_titles(stories);
this.hover_over_story_titles();
this.make_story_feed_entries(stories, first_load);
this.show_feed_view_taskbar_view();
}
},
show_correct_story_view: function(feed_id) {