From c12d997f248c143b7746d07a3c2ce9b58a3ecd5e Mon Sep 17 00:00:00 2001 From: Asaad Mahmood Date: Tue, 5 Apr 2016 18:22:26 +0500 Subject: Multiple UI Improvements * Fixing backstage scrolling and link issue * Fixing system console and color picker css * Changing the toggleclass --- webapp/components/backstage/backstage_navbar.jsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webapp/components/backstage') 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() { -- cgit v1.2.3-1-g7c22