Skip to content

Commit 7dd9d53

Browse files
author
eznedan
committed
FIX: issue with visibility
1 parent 133337f commit 7dd9d53

File tree

1 file changed

+6
-0
lines changed
  • src/main/resources/static/js

1 file changed

+6
-0
lines changed

src/main/resources/static/js/main.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,22 @@ jQuery(document).ready(function() {
1717
var frontendServiceUrl = $('#frontendServiceUrl').text();
1818

1919
function loadMainPage() {
20+
$("#selectInstances").visible();
2021
$("#mainFrame").load("subscriptionpage.html");
2122
}
2223

2324
$("#testRulesBtn").click(function() {
25+
$("#selectInstances").visible();
2426
$("#mainFrame").load("testRules.html");
2527
});
2628

2729
$("#eiInfoBtn").click(function() {
30+
$("#selectInstances").visible();
2831
$("#mainFrame").load("eiInfo.html");
2932
});
3033

3134
$("#loginBtn").click(function() {
35+
$("#selectInstances").visible();
3236
$("#mainFrame").load("login.html");
3337
});
3438

@@ -43,6 +47,7 @@ jQuery(document).ready(function() {
4347
});
4448

4549
$("#logoutBtn").click(function() {
50+
$("#selectInstances").visible();
4651
$.ajax({
4752
url : "/auth/logout",
4853
type : "GET",
@@ -60,6 +65,7 @@ jQuery(document).ready(function() {
6065
});
6166

6267
$("#jmesPathRulesSetUpBtn").click(function() {
68+
$("#selectInstances").visible();
6369
$("#mainFrame").load("jmesPathRulesSetUp.html");
6470
});
6571

0 commit comments

Comments
 (0)