From 4d974730bf216ec9c73d368bdf7dac8cce716b9b Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 26 Aug 2015 12:16:55 -0400 Subject: [PATCH] Removing extraneous render from team_discussion.js On the advice of https://github.com/edx/edx-platform/pull/9470, the render call here is not needed and should be removed in order to allow the view's owner to determine when it needs to be rendered. This will hopefully also fix the flaky tests we've been seeing, we'll need to continue to monitor the builds to be sure. --- lms/djangoapps/teams/static/teams/js/views/team_discussion.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lms/djangoapps/teams/static/teams/js/views/team_discussion.js b/lms/djangoapps/teams/static/teams/js/views/team_discussion.js index 2549f17124..0245a522bf 100644 --- a/lms/djangoapps/teams/static/teams/js/views/team_discussion.js +++ b/lms/djangoapps/teams/static/teams/js/views/team_discussion.js @@ -8,7 +8,6 @@ var TeamDiscussionView = Backbone.View.extend({ initialize: function () { window.$$course_id = this.$el.data("course-id"); - this.render(); }, render: function () {