From b2b16fce26132f21549b3f7c956ca6700e0ff0a2 Mon Sep 17 00:00:00 2001 From: David Coallier Date: Sun, 6 Feb 2011 21:41:51 +0000 Subject: [PATCH] Removed papa bear and put the username instead of the name when the name isnt present. --- js/githubresume.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/githubresume.js b/js/githubresume.js index 02590df..f9ab676 100644 --- a/js/githubresume.js +++ b/js/githubresume.js @@ -67,7 +67,7 @@ var run = function() { } } - var name = 'Papa Bear'; + var name = username; if (data.user.name !== null && data.user.name !== undefined) { name = data.user.name; }