Skip to content

Commit

Permalink
Fixed features list trailing commas in project page
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Oct 8, 2013
1 parent 01e96ce commit b6922c3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,15 @@
.text(feature.title)
.appendTo(subCategoryElem);

$('<span/>')
.text(", ")
.appendTo(featureElem);
if (j < lenj - 2) {
$('<span/>')
.text(", ")
.appendTo(featureElem);
} else if (j < lenj - 1) {
$('<span/>')
.text(" ")
.appendTo(featureElem);
}
}
}
}
Expand Down

0 comments on commit b6922c3

Please sign in to comment.