Remove extraneous space added when testing (closes #1938)

This commit is contained in:
Steve Purcell 2014-08-17 08:44:27 +01:00
parent df60ea7168
commit d8f4f05269

View file

@ -167,7 +167,7 @@
}
function packageLink(pkg, contents) {
return m("a", {href: "/ " + encodeURIComponent(pkg.name), config: m.route},
return m("a", {href: "/" + encodeURIComponent(pkg.name), config: m.route},
contents || pkg.name);
}