summaryrefslogtreecommitdiffstats
path: root/web/react/pages/signup_team.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-08-13 13:01:21 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-08-13 13:01:21 -0400
commitca919538cc402ed90ce42ffc3ef98994bb1081f4 (patch)
tree4ebc16d9c3092fbcf25dba68153868f8d277b0e0 /web/react/pages/signup_team.jsx
parentd35065d6fd8237468ee3aa63bfba3b2aa29bc4af (diff)
downloadchat-ca919538cc402ed90ce42ffc3ef98994bb1081f4.tar.gz
chat-ca919538cc402ed90ce42ffc3ef98994bb1081f4.tar.bz2
chat-ca919538cc402ed90ce42ffc3ef98994bb1081f4.zip
Added ConfigStore that is populated from the server
Diffstat (limited to 'web/react/pages/signup_team.jsx')
-rw-r--r--web/react/pages/signup_team.jsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/web/react/pages/signup_team.jsx b/web/react/pages/signup_team.jsx
index e982f5a79..37c441d4f 100644
--- a/web/react/pages/signup_team.jsx
+++ b/web/react/pages/signup_team.jsx
@@ -1,11 +1,15 @@
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
-var SignupTeam =require('../components/signup_team.jsx');
+var SignupTeam = require('../components/signup_team.jsx');
+
+var AsyncClient = require('../utils/async_client.jsx');
global.window.setup_signup_team_page = function() {
+ AsyncClient.getConfig();
+
React.render(
<SignupTeam />,
document.getElementById('signup-team')
);
-}; \ No newline at end of file
+};