Skip to content

Commit

Permalink
- added arrow key support for signature table cell navigation, closed #…
Browse files Browse the repository at this point in the history
  • Loading branch information
exodus4d committed Sep 1, 2018
1 parent 993340e commit 839b349
Show file tree
Hide file tree
Showing 15 changed files with 3,724 additions and 6,111 deletions.
2 changes: 1 addition & 1 deletion js/app/map/overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ define([
* @param connectionsData
*/
let addConnectionsOverlay = (connections, connectionsData) => {
let SystemSignatures = require('app/ui/module/system_signature_new');
let SystemSignatures = require('app/ui/module/system_signature');

/**
* add label to endpoint
Expand Down
2 changes: 1 addition & 1 deletion js/app/map/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ define([
connection &&
connectionData.signatures // signature data is required...
){
let SystemSignatures = require('app/ui/module/system_signature_new');
let SystemSignatures = require('app/ui/module/system_signature');

let connectionId = connection.getParameter('connectionId');
let sourceEndpoint = connection.endpoints[0];
Expand Down
3 changes: 1 addition & 2 deletions js/app/module_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ define([
'sortable',
'app/ui/module/system_info',
'app/ui/module/system_graph',
//'app/ui/module/system_signature',
'app/ui/module/system_signature_new',
'app/ui/module/system_signature',
'app/ui/module/system_route',
'app/ui/module/system_intel',
'app/ui/module/system_killboard',
Expand Down
3 changes: 2 additions & 1 deletion js/app/ui/form_element.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ define([
let securityClass = Util.getSecurityClassForSystem(parts[1].length > 3 ? parts[1].substring(0, 2) : parts[1]);
markup += '<span>' + parts[0] + '</span>&nbsp;&nbsp;';
markup += '<i class="fas fa-long-arrow-alt-right txt-color txt-color-grayLight"></i>';
markup += '<span class="' + securityClass + ' ' + Util.config.popoverTriggerClass + ' ' + Util.config.helpDefaultClass + '" data-name="' + parts[0] + '">&nbsp;&nbsp;' + parts[1] + '&nbsp;</span>';
markup += '<span class="' + securityClass + ' ' + Util.config.popoverTriggerClass + ' ' + Util.config.helpDefaultClass +
'" data-name="' + parts[0] + '">&nbsp;&nbsp;' + parts[1] + '&nbsp;</span>';
}else{
markup += '<span>' + state.text + '</span>';
}
Expand Down

0 comments on commit 839b349

Please sign in to comment.