mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
Rename sortValue and tmpSortValue to be more meaningful
This commit is contained in:
@@ -247,18 +247,18 @@ export default class ShipyardPage extends Page {
|
|||||||
let shipRows = new Array(shipSummaries.length);
|
let shipRows = new Array(shipSummaries.length);
|
||||||
let detailRows = new Array(shipSummaries.length);
|
let detailRows = new Array(shipSummaries.length);
|
||||||
|
|
||||||
let sortValue = null;
|
let lastShipSortValue = null;
|
||||||
let backgroundHighlight = false;
|
let backgroundHighlight = false;
|
||||||
|
|
||||||
for (let s of shipSummaries) {
|
for (let s of shipSummaries) {
|
||||||
let tmpSortValue = s[shipPredicate];
|
let shipSortValue = s[shipPredicate];
|
||||||
if( shipPredicateIndex != undefined ) {
|
if( shipPredicateIndex != undefined ) {
|
||||||
tmpSortValue = tmpSortValue[shipPredicateIndex];
|
shipSortValue = shipSortValue[shipPredicateIndex];
|
||||||
}
|
}
|
||||||
|
|
||||||
if( tmpSortValue != sortValue ) {
|
if( shipSortValue != lastShipSortValue ) {
|
||||||
backgroundHighlight = !backgroundHighlight;
|
backgroundHighlight = !backgroundHighlight;
|
||||||
sortValue = tmpSortValue;
|
lastShipSortValue = shipSortValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
detailRows[i] = this._shipRowElement(s, translate, units, fInt, formats.f1, backgroundHighlight);
|
detailRows[i] = this._shipRowElement(s, translate, units, fInt, formats.f1, backgroundHighlight);
|
||||||
|
|||||||
Reference in New Issue
Block a user