diff options
author | Victor Häggqvist <[email protected]> | 2014-06-30 20:17:32 +0200 |
---|---|---|
committer | Victor Häggqvist <[email protected]> | 2014-06-30 20:17:32 +0200 |
commit | 34686f88efe19b58a017b40151de921e643b9237 (patch) | |
tree | c2ec22334c70ddda40ae3c5bc596892d518d62d8 /lastcommit.js | |
parent | 40002bc3cf6db8fdaf2eb67368afbdf617bf5ca5 (diff) |
remove space
Diffstat (limited to '')
-rw-r--r-- | lastcommit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lastcommit.js b/lastcommit.js index a545050..8c66647 100644 --- a/lastcommit.js +++ b/lastcommit.js @@ -93,7 +93,7 @@ */ function renderWidget(element, data) { var url = 'https://github.com/' + data.user + '/' + data.repo.name +'/commit/' + data.commit.sha, - html = '<a href="' + url +'"> ' + data.commit.commit.message + '</a>'; + html = '<a href="' + url +'">' + data.commit.commit.message + '</a>'; element.innerHTML = html; } |