Show full portal capture time on tooltips
This commit is contained in:
committed by
Daniel Cheng
parent
f213a481e8
commit
4ecec63a0d
@ -26,7 +26,10 @@ window.renderPortalDetails = function(guid) {
|
||||
: null;
|
||||
var playerText = player ? ['owner', player] : null;
|
||||
|
||||
var time = d.captured ? unixTimeToString(d.captured.capturedTime) : null;
|
||||
var time = d.captured
|
||||
? '<span title="' + unixTimeToString(d.captured.capturedTime, true) + '">'
|
||||
+ unixTimeToString(d.captured.capturedTime) + '</span>'
|
||||
: null;
|
||||
var sinceText = time ? ['since', time] : null;
|
||||
|
||||
var linkedFields = ['fields', d.portalV2.linkedFields.length];
|
||||
|
Reference in New Issue
Block a user