From c197f749458600f8e65a93d58b853d131d49a0d9 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Sat, 30 Nov 2013 21:06:02 +0000 Subject: [PATCH] change portal map data storage to match the method used for links/fields the detailed portal data, now retreived separately from the map, will be handled by separate code, and not stored within the portals --- code/map_data_render.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/map_data_render.js b/code/map_data_render.js index 2e1d43f8..604b3c28 100644 --- a/code/map_data_render.js +++ b/code/map_data_render.js @@ -277,7 +277,7 @@ window.Render.prototype.createPortalEntity = function(ent) { ent: ent, // LEGACY - TO BE REMOVED AT SOME POINT! use .guid, .timestamp and .details instead guid: ent[0], timestamp: ent[1], - data: { summary: ent[2] }, + data: ent[2] }; var marker = createMarker(latlng, dataOptions);