diff --git a/plugins/portals-list.user.js b/plugins/portals-list.user.js index 2f34d169..5f03b471 100644 --- a/plugins/portals-list.user.js +++ b/plugins/portals-list.user.js @@ -2,7 +2,7 @@ // @id iitc-plugin-portals-list@teo96 // @name IITC plugin: show list of portals // @category Info -// @version 0.0.17.@@DATETIMEVERSION@@ +// @version 0.0.18.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ @@ -211,11 +211,14 @@ window.plugin.portalslist.displayPL = function() { $(document).on('click.portalslist', '#portalslist .filterEnl', function() { $('#portalslist').html(window.plugin.portalslist.portalTable($(this).data('sort'),window.plugin.portalslist.sortOrder,2)); }); + + //run the name resolving process + resolvePlayerNames(); //debug tools //end = new Date().getTime(); //console.log('***** end : ' + end + ' and Elapse : ' + (end - start)); - } +} window.plugin.portalslist.portalTable = function(sortBy, sortOrder, filter) { // sortOrder <0 ==> desc, >0 ==> asc, i use sortOrder * -1 to change the state diff --git a/plugins/scoreboard.user.js b/plugins/scoreboard.user.js index 2a0d4b42..22bd189b 100644 --- a/plugins/scoreboard.user.js +++ b/plugins/scoreboard.user.js @@ -2,7 +2,7 @@ // @id iitc-plugin-scoreboard@vita10gy // @name IITC plugin: show a localized scoreboard. // @category Info -// @version 0.1.8.@@DATETIMEVERSION@@ +// @version 0.1.9.@@DATETIMEVERSION@@ // @namespace https://github.com/jonatkins/ingress-intel-total-conversion // @updateURL @@UPDATEURL@@ // @downloadURL @@DOWNLOADURL@@ @@ -291,6 +291,9 @@ window.plugin.scoreboard.display = function() { $(document).on('click', '#players table th', function() { $('#players').html(window.plugin.scoreboard.playerTable($(this).data('sort'))); }); + + //run the name resolving process + resolvePlayerNames(); } window.plugin.scoreboard.portalDistance = function(portalAE6Location, portalBE6Location) {