- replaced some old images on /login page with newer versions

- improved "route search" dialog. Added new "connection size" select field
- improved render time for clients. Reduced DCL (DOM Content Loaded) time
- improved CSV,Clipboard copy data for "task manager" table data
This commit is contained in:
Mark Friedrich
2019-06-20 17:00:07 +02:00
parent da02ae6a44
commit 176cd41a49
47 changed files with 524 additions and 269 deletions

View File

@@ -154,13 +154,13 @@ class Route extends Controller\AccessController {
$includeTypes[] = 'wh_critical';
}
if( $filterData['wormholesFrigate'] !== true ){
$excludeTypes[] = 'wh_jump_mass_s';
}
if( $filterData['wormholesEOL'] === false ){
$includeEOL = false;
}
if(!empty($filterData['excludeTypes'])){
$excludeTypes = $filterData['excludeTypes'];
}
}
if( $filterData['endpointsBubble'] !== true ){
@@ -733,8 +733,9 @@ class Route extends Controller\AccessController {
'wormholes' => (bool) $routeData['wormholes'],
'wormholesReduced' => (bool) $routeData['wormholesReduced'],
'wormholesCritical' => (bool) $routeData['wormholesCritical'],
'wormholesFrigate' => (bool) $routeData['wormholesFrigate'],
'wormholesEOL' => (bool) $routeData['wormholesEOL'],
'wormholesSizeMin' => (string) $routeData['wormholesSizeMin'],
'excludeTypes' => (array) $routeData['excludeTypes'],
'endpointsBubble' => (bool) $routeData['endpointsBubble'],
'flag' => $routeData['flag']
];