summaryrefslogtreecommitdiffstats
path: root/webapp/components/backstage
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmoodspin@users.noreply.github.com>2016-04-05 18:22:26 +0500
committerChristopher Speller <crspeller@gmail.com>2016-04-05 09:22:26 -0400
commitc12d997f248c143b7746d07a3c2ce9b58a3ecd5e (patch)
treea6f3923d453b09321c3130d8b6179984b6453b22 /webapp/components/backstage
parent26ccc478e1f2b309cfd22271445cfd21cc306262 (diff)
downloadchat-c12d997f248c143b7746d07a3c2ce9b58a3ecd5e.tar.gz
chat-c12d997f248c143b7746d07a3c2ce9b58a3ecd5e.tar.bz2
chat-c12d997f248c143b7746d07a3c2ce9b58a3ecd5e.zip
Multiple UI Improvements
* Fixing backstage scrolling and link issue * Fixing system console and color picker css * Changing the toggleclass
Diffstat (limited to 'webapp/components/backstage')
-rw-r--r--webapp/components/backstage/backstage_navbar.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/components/backstage/backstage_navbar.jsx b/webapp/components/backstage/backstage_navbar.jsx
index d1dac6043..d2d2da1ed 100644
--- a/webapp/components/backstage/backstage_navbar.jsx
+++ b/webapp/components/backstage/backstage_navbar.jsx
@@ -1,6 +1,8 @@
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
+import $ from 'jquery';
+
import React from 'react';
import TeamStore from 'stores/team_store.jsx';
@@ -21,10 +23,12 @@ export default class BackstageNavbar extends React.Component {
componentDidMount() {
TeamStore.addChangeListener(this.handleChange);
+ $('body').addClass('backstage');
}
componentWillUnmount() {
TeamStore.removeChangeListener(this.handleChange);
+ $('body').removeClass('backstage');
}
handleChange() {