1
0
Fork 0
This commit is contained in:
hkernbach 2016-04-29 19:53:12 +02:00
parent 6f78846600
commit 5adf32b4b9
2 changed files with 7 additions and 3 deletions

View File

@ -16,7 +16,10 @@
e.stopPropagation();
//hide user info dropdown if out of focus
if (!$(e.target).hasClass('subBarDropdown') && !$(e.target).hasClass('dropdown-header') && !$(e.target).hasClass('dropdown-footer') && !$(e.target).hasClass('toggle')) {
if (!$(e.target).hasClass('subBarDropdown')
&& !$(e.target).hasClass('dropdown-header')
&& !$(e.target).hasClass('dropdown-footer')
&& !$(e.target).hasClass('toggle')) {
if ($('#userInfo').is(':visible')) {
$('.subBarDropdown').hide();
}

View File

@ -1267,8 +1267,9 @@ function startInstanceCluster(instanceInfo, protocol, options,
startInstanceSingleServer(instanceInfo, protocol, options, ...makeArgs('coordinator', coordinatorArgs));
let coordinatorUrl = instanceInfo.url;
let response;
//disabled because not in use (jslint)
//let coordinatorUrl = instanceInfo.url;
//let response;
let httpOptions = makeAuthorizationHeaders(options);
httpOptions.method = 'POST';
httpOptions.returnBodyOnError = true;