ソースを参照

fix splashpage closing on new window

CauseFX 4 年 前
コミット
fec26b8f94
1 ファイル変更3 行追加1 行削除
  1. 3 1
      js/functions.js

+ 3 - 1
js/functions.js

@@ -970,7 +970,9 @@ function tabActions(event,name, type){
 		organizrConsole('Tab Function','Action not defined yet', 'info');
 	}else{
 		switchTab(cleanClass(name), type);
-        $('.splash-screen').removeClass('in').addClass('hidden');
+		if(type !== 2){
+			$('.splash-screen').removeClass('in').addClass('hidden');
+		}
 	}
 }
 function reverseObject(object) {