From 98ec837c1e67b0935ec9c60f88fb3056806c836e Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Fri, 1 Jul 2022 16:25:29 -0400 Subject: [PATCH] Use selected and not visible as custom handler. --- media/js/newsblur/views/story_detail_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/js/newsblur/views/story_detail_view.js b/media/js/newsblur/views/story_detail_view.js index 5e3069f28..10537c1e4 100644 --- a/media/js/newsblur/views/story_detail_view.js +++ b/media/js/newsblur/views/story_detail_view.js @@ -43,7 +43,7 @@ NEWSBLUR.Views.StoryDetailView = Backbone.View.extend({ this.model.bind('change:shared', this.render_comments, this); this.model.bind('change:comments', this.render_comments, this); this.model.bind('change:story_content', this.render_story_content, this); - this.model.bind('change:visible', this.attach_custom_handler, this); + this.model.bind('change:selected', this.attach_custom_handler, this); if (this.collection) { this.collection.bind('render:intelligence', this.render_intelligence, this); }