mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-30 11:41:19 +08:00
Fix navigationJS team switch when have only 1 team
This commit is contained in:
parent
782d1dfc2d
commit
3f037ef517
1 changed files with 6 additions and 1 deletions
|
@ -89,7 +89,12 @@
|
|||
var teamSwitch = $('#team-switch');
|
||||
var dropDownMenu = teamSwitch.find('.dropdown-menu');
|
||||
var dropDownHeight;
|
||||
var ps = new PerfectScrollbar(teamSwitch.find('.team-container')[0], { scrollYMarginOffset: 5 });
|
||||
var teamContainter = teamSwitch.find('.team-container')[0];
|
||||
var ps;
|
||||
|
||||
if (typeof teamContainter === 'undefined') return;
|
||||
|
||||
ps = new PerfectScrollbar(teamContainter, { scrollYMarginOffset: 5 });
|
||||
teamSwitch.click(() => {
|
||||
dropDownHeight = dropDownMenu.height();
|
||||
if (teamSwitch.find('.new-team').length === 0) {
|
||||
|
|
Loading…
Reference in a new issue