aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2014-06-30 20:17:32 +0200
committerVictor Häggqvist <[email protected]>2014-06-30 20:17:32 +0200
commit34686f88efe19b58a017b40151de921e643b9237 (patch)
treec2ec22334c70ddda40ae3c5bc596892d518d62d8
parent40002bc3cf6db8fdaf2eb67368afbdf617bf5ca5 (diff)
remove space
-rw-r--r--lastcommit.js2
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;
}