Adding browser functions in utilis and calling them in settings_sidebar

This commit is contained in:
Asaad Mahmood
2015-11-03 21:56:18 +05:00
parent 6f1857f95b
commit 38fd4acebd
2 changed files with 16 additions and 1 deletions

View File

@@ -1,11 +1,12 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
var utils = require('../utils/utils.jsx');
export default class SettingsSidebar extends React.Component {
componentDidUpdate() {
$('.settings-modal').find('.modal-body').scrollTop(0);
$('.settings-modal').find('.modal-body').perfectScrollbar('update');
if (navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1) {
if (utils.isSafari()) {
$('.settings-modal .settings-links .nav').addClass('absolute');
}
}

View File

@@ -59,6 +59,20 @@ export function isTestDomain() {
return false;
}
export function isChrome() {
if (navigator.userAgent.indexOf('Chrome') > -1) {
return true;
}
return false;
}
export function isSafari() {
if (navigator.userAgent.indexOf('Safari') !== -1 && navigator.userAgent.indexOf('Chrome') === -1) {
return true;
}
return false;
}
export function isInRole(roles, inRole) {
var parts = roles.split(' ');
for (var i = 0; i < parts.length; i++) {