summaryrefslogtreecommitdiffstats
path: root/web/react/pages/signup_team.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-09-02 12:40:42 -0700
committerCorey Hulen <corey@hulen.com>2015-09-02 12:40:42 -0700
commit3e431b6c88105470e2bd583b6647976f9b9d3e5b (patch)
tree9e3beb71ce0ca39c2297a44bb1536971d86f1cf7 /web/react/pages/signup_team.jsx
parente3aa888026b2883ec6b9275ce7729866149fc5fa (diff)
parent069f8513130dd6e717a153b85684cd63b6d32a0e (diff)
downloadchat-3e431b6c88105470e2bd583b6647976f9b9d3e5b.tar.gz
chat-3e431b6c88105470e2bd583b6647976f9b9d3e5b.tar.bz2
chat-3e431b6c88105470e2bd583b6647976f9b9d3e5b.zip
Merge pull request #535 from nickago/MM-2067
MM-2067 Cosmetic Refactoring
Diffstat (limited to 'web/react/pages/signup_team.jsx')
-rw-r--r--web/react/pages/signup_team.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/web/react/pages/signup_team.jsx b/web/react/pages/signup_team.jsx
index 4b58025ac..e9e803aa4 100644
--- a/web/react/pages/signup_team.jsx
+++ b/web/react/pages/signup_team.jsx
@@ -5,7 +5,7 @@ var SignupTeam = require('../components/signup_team.jsx');
var AsyncClient = require('../utils/async_client.jsx');
-global.window.setup_signup_team_page = function(authServices) {
+function setupSignupTeamPage(authServices) {
AsyncClient.getConfig();
var services = JSON.parse(authServices);
@@ -14,4 +14,6 @@ global.window.setup_signup_team_page = function(authServices) {
<SignupTeam services={services} />,
document.getElementById('signup-team')
);
-};
+}
+
+global.window.setup_signup_team_page = setupSignupTeamPage;