Skip to content

Commit

Permalink
closed #119 fixed wormhole signature id count
Browse files Browse the repository at this point in the history
  • Loading branch information
exodus4d committed Apr 10, 2016
1 parent 09129e4 commit c620617
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/app/ui/system_signature.js
Original file line number Diff line number Diff line change
Expand Up @@ -1029,8 +1029,8 @@ define([
key > 0 &&
tempSelectOptions.hasOwnProperty(key)
) {
fixSelectOptions.push( {value: key, text: tempSelectOptions[key] } );
newSelectOptionsCount++;
fixSelectOptions.push( {value: key, text: tempSelectOptions[key] } );
}
}

Expand All @@ -1055,8 +1055,8 @@ define([
frigKey > 0 &&
frigateHoles.hasOwnProperty(frigKey)
) {
frigateWHData.push( {value: newSelectOptionsCount, text: frigateHoles[frigKey]} );
newSelectOptionsCount++;
frigateWHData.push( {value: newSelectOptionsCount, text: frigateHoles[frigKey]} );
}
}

Expand All @@ -1071,8 +1071,8 @@ define([
incomingKey > 0 &&
Init.incomingWormholes.hasOwnProperty(incomingKey)
) {
incomingWHData.push( {value: newSelectOptionsCount, text: Init.incomingWormholes[incomingKey]} );
newSelectOptionsCount++;
incomingWHData.push( {value: newSelectOptionsCount, text: Init.incomingWormholes[incomingKey]} );
}
}

Expand All @@ -1093,8 +1093,8 @@ define([
for(var i = 0; i < systemData.statics.length; i++){
var staticWHName = systemData.statics[i].name + ' - ' + systemData.statics[i].security;

staticWHData.push( {value: newSelectOptionsCount, text: staticWHName} );
newSelectOptionsCount++;
staticWHData.push( {value: newSelectOptionsCount, text: staticWHName} );
}

if(staticWHData.length > 0){
Expand Down

0 comments on commit c620617

Please sign in to comment.