* Fixing backstage scrolling and link issue

* Fixing system console and color picker css

* Changing the toggleclass
Этот коммит содержится в:
Asaad Mahmood
2016-04-05 18:22:26 +05:00
коммит произвёл Christopher Speller
родитель 26ccc478e1
Коммит c12d997f24
6 изменённых файлов: 39 добавлений и 7 удалений

Просмотреть файл

@@ -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() {