Browse Source

Closing tabs open up top tab (#1266)

CauseFX 6 years ago
parent
commit
fb0e3f6f78
1 changed files with 1 additions and 1 deletions
  1. 1 1
      js/functions.js

+ 1 - 1
js/functions.js

@@ -751,7 +751,7 @@ function loadNextTab(){
 	if (typeof next !== 'undefined') {
 		var type = $('#page-wrapper').find('.loaded').attr('data-type');
         var parent = $('#menu-'+next).parent();
-        if(parent.hasClass('in') === false){
+        if(parent.hasClass('in') === false && parent.hasClass('nav-second-level')){
             parent.parent().find('a').first().trigger('click')
         }
 		switchTab(next,type);