From 69e75f5ce04a64cb769801c043ad49a723f0ed47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Daubensch=C3=BCtz?= Date: Fri, 16 Oct 2015 13:10:18 +0200 Subject: [PATCH] Add AscribeSpinner to LogoutContainer --- js/components/logout_container.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/js/components/logout_container.js b/js/components/logout_container.js index 74c16439..7fb34211 100644 --- a/js/components/logout_container.js +++ b/js/components/logout_container.js @@ -3,10 +3,16 @@ import React from 'react'; import Router from 'react-router'; +import AscribeSpinner from './ascribe_spinner'; + import UserActions from '../actions/user_actions'; import { alt, altWhitelabel, altUser, altThirdParty } from '../alt'; import AppConstants from '../constants/application_constants'; + +import { getLangText } from '../utils/lang_utils'; + + let baseUrl = AppConstants.baseUrl; let LogoutContainer = React.createClass({ @@ -30,7 +36,14 @@ let LogoutContainer = React.createClass({ }, render() { - return null; + return ( +
+ +

+ {getLangText('Just a sec, we\'re logging you out...')} +

+
+ ); } });