From fb7b70bdaece19bb6e511c41b2e811203d52a537 Mon Sep 17 00:00:00 2001 From: frankiefu Date: Fri, 4 Apr 2014 10:24:54 -0700 Subject: [PATCH] add github username for displaying gist link --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 7668bd97..0b1c1f63 100644 --- a/index.html +++ b/index.html @@ -116,6 +116,7 @@ selected: 'design', remoteHtml: '', fileName: 'designer.html', + githubUser: 'designer-polymer', githubToken: '77777d8808da580cd6134b7390b5fd306c66d1d6', ready: function() { document.addEventListener('keydown', @@ -277,7 +278,7 @@ */ }, getGistUrl: function() { - return 'https://gist.github.com/anonymous/' + this.fileId; + return 'https://gist.github.com/' + this.githubUser + '/' + this.fileId; } });