mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing odd stories showing up on wrong feed bug. Also fixed overflow styling issue when resizing.
This commit is contained in:
parent
15d7622868
commit
b7d7b4b1a0
2 changed files with 15 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue