Skip to content

Commit 84b1481

Browse files
committed
Fix a bug (hopefully the bug you wanted)?
1 parent d419e41 commit 84b1481

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

js/resources.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,11 @@ function create_showcase_tr(project) {
224224
project.authors.concat("<br>")).append(
225225
create_anchor(project.readmeLink, "README", "None", gtag_trackShowcaseLink)
226226
));
227-
$tr.append($("<br>").append(
228-
create_anchor(project.codeLink, project.codeSource, "None", gtag_trackShowcaseLink)
229-
));
227+
$tr = $tr.append($("<br>")).append(
228+
create_anchor(project.codeLink, project.codeSource, "None", gtag_trackShowcaseLink)
229+
);
230+
231+
console.log($tr.html());
230232

231233
// Add images if they're applicable
232234
if (project.img.length > 0){

0 commit comments

Comments
 (0)