Fix problem with graph rendering when has initial state

This commit is contained in:
Max Méndez 2014-04-22 08:31:22 -06:00
parent 300e5ea6a7
commit 3fcde1cb2f

View File

@ -248,6 +248,9 @@ my.MultiView = Backbone.View.extend({
// the main views
_.each(this.pageViews, function(view, pageName) {
view.view.render();
if (view.view.redraw) {
view.view.redraw();
}
$dataViewContainer.append(view.view.el);
if (view.view.elSidebar) {
$dataSidebar.append(view.view.elSidebar);