Rename sortValue and tmpSortValue to be more meaningful

This commit is contained in:
Greg Matthews
2017-11-11 13:29:59 -08:00
parent e19688e96f
commit 54ddb0d014

View File

@@ -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);