From bedb9b679bca4707efaa3f2f7d19de363ecd769d Mon Sep 17 00:00:00 2001 From: NumEricR Date: Sun, 10 Mar 2013 01:04:42 +0100 Subject: [PATCH] Restore gists number on statusScore - Fix #57 --- js/githubresume.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/githubresume.js b/js/githubresume.js index 3c61ab8..c9f4304 100644 --- a/js/githubresume.js +++ b/js/githubresume.js @@ -153,8 +153,8 @@ var run = function() { var FIFTH_STEP = 150; var EXTRA_POINT_GAIN = 1; - var statusScore = view.repos * COEF_REPOS - + data.public_repos * COEF_GISTS + var statusScore = data.public_repos * COEF_REPOS + + data.public_gists * COEF_GISTS + data.followers * COEF_FOLLOWERS + data.following * COEF_FOLLOWING;