mirror of https://gitee.com/bigwinds/arangodb
jslint
This commit is contained in:
parent
6f78846600
commit
5adf32b4b9
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue