Re-added missing render() call

This commit is contained in:
David Baumgold
2013-07-30 11:22:13 -04:00
parent 372992244c
commit 4f5c2cce75

View File

@@ -35,6 +35,7 @@ CMS.Views.ClassInfoUpdateView = Backbone.View.extend({
initialize: function() {
this.template = _.template($("#course_info_update-tpl").text());
this.render();
// when the client refetches the updates as a whole, re-render them
this.listenTo(this.collection, 'reset', this.render);
},