From b0428911d5af7050383cc8e978273908f8493528 Mon Sep 17 00:00:00 2001 From: Brennan Novak Date: Mon, 4 Aug 2014 14:58:51 +0000 Subject: [PATCH] Updated index-setup.js --- static/default/html/jsapi/index-setup.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/default/html/jsapi/index-setup.js b/static/default/html/jsapi/index-setup.js index d8b7ed407..6676cd74c 100644 --- a/static/default/html/jsapi/index-setup.js +++ b/static/default/html/jsapi/index-setup.js @@ -24,8 +24,10 @@ var SetupApp = (function ($, Backbone, global) { var init = function() { + global.ProfilesCollection = new ProfilesCollection(); + // Views - global.ProfilesView = new ProfilesView({ model: new ProfilesModel(), el: $('#setup') }); + global.ProfilesView = new ProfilesView({ model: new ProfileModel(), el: $('#setup') }); global.SourcesView = new SourcesView({ model: new SourceModel(), el: $('#setup') }); global.SendingView = new SendingView({ el: $('#setup') }); global.AdvancedView = new AdvancedView({ el: $('#setup') });