diff --git a/media/js/newsblur/views/story_detail_view.js b/media/js/newsblur/views/story_detail_view.js index fb812e6f5..000e45cc1 100644 --- a/media/js/newsblur/views/story_detail_view.js +++ b/media/js/newsblur/views/story_detail_view.js @@ -679,6 +679,8 @@ NEWSBLUR.Views.StoryDetailView = Backbone.View.extend({ } this.model.set('selected', true, {selected_by_scrolling: true}); + + return false; }, mouseenter_manage_icon: function() { diff --git a/media/js/newsblur/views/story_title_view.js b/media/js/newsblur/views/story_title_view.js index 71a1f19f6..9a8aa69e9 100644 --- a/media/js/newsblur/views/story_title_view.js +++ b/media/js/newsblur/views/story_title_view.js @@ -143,6 +143,8 @@ NEWSBLUR.Views.StoryTitleView = Backbone.View.extend({ } this.$(".NB-story-detail").html(this.text_view.$el); this.text_view.story_detail.render_starred_tags(); + this.text_view.attach_handlers(); + this.text_view.setElement(this.text_view.$el); } else { if (!this.story_detail) { this.story_detail = new NEWSBLUR.Views.StoryDetailView({ @@ -154,14 +156,8 @@ NEWSBLUR.Views.StoryTitleView = Backbone.View.extend({ } // console.log(['render_inline_story_detail', this.$(".NB-story-detail")]); this.$(".NB-story-detail").html(this.story_detail.$el); - if (this.story_detail) { - this.story_detail.attach_handlers(); - this.story_detail.setElement(this.story_detail.$el); - } - if (this.text_view) { - this.text_view.attach_handlers(); - this.text_view.setElement(this.text_view.$el); - } + this.story_detail.attach_handlers(); + this.story_detail.setElement(this.story_detail.$el); } },