Commit 4d974730 by Eric Fischer

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.
parent 3e407b9d
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
var TeamDiscussionView = Backbone.View.extend({ var TeamDiscussionView = Backbone.View.extend({
initialize: function () { initialize: function () {
window.$$course_id = this.$el.data("course-id"); window.$$course_id = this.$el.data("course-id");
this.render();
}, },
render: function () { render: function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment