Cosmetic Refactoring
Этот коммит содержится в:
@@ -3,9 +3,18 @@
|
||||
|
||||
var SignupUserComplete = require('../components/signup_user_complete.jsx');
|
||||
|
||||
global.window.setup_signup_user_complete_page = function(email, name, ui_name, id, data, hash, auth_services) {
|
||||
function setupSignupUserCompletePage(email, name, uiName, id, data, hash, authServices) {
|
||||
React.render(
|
||||
<SignupUserComplete teamId={id} teamName={name} teamDisplayName={ui_name} email={email} hash={hash} data={data} authServices={auth_services} />,
|
||||
<SignupUserComplete
|
||||
teamId={id}
|
||||
teamName={name}
|
||||
teamDisplayName={uiName}
|
||||
email={email}
|
||||
hash={hash}
|
||||
data={data}
|
||||
authServices={authServices} />,
|
||||
document.getElementById('signup-user-complete')
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
global.window.setup_signup_user_complete_page = setupSignupUserCompletePage;
|
||||
|
||||
Ссылка в новой задаче
Block a user