Browse Source

fixed chat plugin not closing with close tab button (#1816)

CauseFX 4 years ago
parent
commit
ca9b9b641e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      js/functions.js

+ 5 - 0
js/functions.js

@@ -980,6 +980,11 @@ function closeCurrentTab(event){
 			split = true;
 		}
 	}
+    if($('.plugin-listing').hasClass('show')){
+        hideFrames(split)
+        loadNextTab();
+        return false;
+    }
     let id = $('body').attr('data-active-tab-id');
     let tabInfo = findTab(id);
     if(!tabInfo){