mirror of https://gitee.com/bigwinds/arangodb
jslint
This commit is contained in:
parent
6f78846600
commit
5adf32b4b9
|
@ -16,7 +16,10 @@
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
||||||
//hide user info dropdown if out of focus
|
//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')) {
|
if ($('#userInfo').is(':visible')) {
|
||||||
$('.subBarDropdown').hide();
|
$('.subBarDropdown').hide();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1267,8 +1267,9 @@ function startInstanceCluster(instanceInfo, protocol, options,
|
||||||
|
|
||||||
startInstanceSingleServer(instanceInfo, protocol, options, ...makeArgs('coordinator', coordinatorArgs));
|
startInstanceSingleServer(instanceInfo, protocol, options, ...makeArgs('coordinator', coordinatorArgs));
|
||||||
|
|
||||||
let coordinatorUrl = instanceInfo.url;
|
//disabled because not in use (jslint)
|
||||||
let response;
|
//let coordinatorUrl = instanceInfo.url;
|
||||||
|
//let response;
|
||||||
let httpOptions = makeAuthorizationHeaders(options);
|
let httpOptions = makeAuthorizationHeaders(options);
|
||||||
httpOptions.method = 'POST';
|
httpOptions.method = 'POST';
|
||||||
httpOptions.returnBodyOnError = true;
|
httpOptions.returnBodyOnError = true;
|
||||||
|
|
Loading…
Reference in New Issue