From 6c26f907cc0cf4704aaf5377738721177ec048f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zhao=20L=C3=BC?= Date: Thu, 19 Jul 2012 22:09:48 -0700 Subject: [PATCH] Updated Github API to V3. Github API V2 has been removed. The response data format also changed. --- .themes/classic/source/javascripts/github.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.themes/classic/source/javascripts/github.js b/.themes/classic/source/javascripts/github.js index 8b79dad..9e98b8c 100644 --- a/.themes/classic/source/javascripts/github.js +++ b/.themes/classic/source/javascripts/github.js @@ -3,7 +3,7 @@ var github = (function(){ var i = 0, fragment = '', t = $(target)[0]; for(i = 0; i < repos.length; i++) { - fragment += '
  • '+repos[i].name+'

    '+repos[i].description+'

  • '; + fragment += '
  • '+repos[i].name+'

    '+(repos[i].description||'')+'

  • '; } t.innerHTML = fragment; }