diff --git a/docs/README.md b/docs/README.md index ed3c447..09d3f42 100644 --- a/docs/README.md +++ b/docs/README.md @@ -82,6 +82,9 @@ player presence, or team. ![Match Summary]({{ "/images/match-details-01.PNG" | absolute_url }}) Standard End of Match statistics, bans, award details, and talents. +![Full Draft]({{ "/images/match-details-10.png" | absolute_url }}) +Full match draft, not just bans. + ![Stat Graphs]({{ "/images/match-details-02.png" | absolute_url }}) Interactive charts for overall team damage/healing, teamfight damage/healing, and CC time @@ -120,7 +123,10 @@ Stats of the Storm generates reports for each player found in the database. Hero summary, map summary, and aggregate data for each player. ![Player Hero Details]({{ "/images/player-details-02.png" | absolute_url }}) -Hero details and talent selection per-player. Builds are coming soon! +Hero details and talent selection per-player. + +![Player Hero Builds]({{ "/images/player-details-02.png" | absolute_url }}) +Talent builds overall and per-player. ![Hero Synergy]({{ "/images/player-details-03.png" | absolute_url }}) With and against hero win rates. @@ -148,6 +154,9 @@ the player details. Team stats also include bans, win rate against hero, average time to levels 10 and 20, average mercenary stats, total structure stats, and average team-wide damage stats. +![Team Draft Priority]({{ "/images/team-details-03.png" | absolute_url }}) +Team draft priority, including picks, and bans. + ![Roster Stats]({{ "/images/team-details-02.png" | absolute_url }}) Average roster stats summary with link to the player's profile for more details. diff --git a/docs/images/match-details-10.png b/docs/images/match-details-10.png new file mode 100644 index 0000000..1454460 Binary files /dev/null and b/docs/images/match-details-10.png differ diff --git a/docs/images/player-details-07.png b/docs/images/player-details-07.png new file mode 100644 index 0000000..be283df Binary files /dev/null and b/docs/images/player-details-07.png differ diff --git a/docs/images/teams-03.png b/docs/images/teams-03.png new file mode 100644 index 0000000..da28a82 Binary files /dev/null and b/docs/images/teams-03.png differ diff --git a/js/hero-collection.js b/js/hero-collection.js index 80e2f82..40e0926 100644 --- a/js/hero-collection.js +++ b/js/hero-collection.js @@ -45,6 +45,9 @@ function initHeroCollectionPage() { $('#hero-collection-submenu .item').click(function() { $('#hero-collection-body table').floatThead('reflow'); }); + $('#hero-collection-detail-hero-talent .item').click(function() { + $('#hero-collection-body table').floatThead('reflow'); + }); // filter popup let filterWidget = $(getTemplate('filter', '#filter-popup-widget-template').find('.filter-popup-widget')[0].outerHTML);