Skip to content

Commit

Permalink
Add Id to dropdown. (PokemonGoF#1958)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfw authored and andrewda committed Jul 25, 2016
1 parent bb6a16d commit b4c36a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ $(function () {
var pokeList = []

$.each(data, function(key, value) {
pokeList.push( { id: key, text: value } );
pokeList.push( { id: key, text: + ' - #' + key } );
idToPokemon[key] = value;
});

Expand Down

0 comments on commit b4c36a5

Please sign in to comment.