Closed BorisMoore closed 13 years ago
Copied from https://github.com/nje/jquery-tmpl/issues#issue/27 Created 5 months ago by timmolendijk The following holds true:
$.tmpl("Name: ${name}, ", [{name: "Tim"}, {name: "Boris"}]).text() === "Name: Tim,Name: Boris,"
While I'd expected this to hold true instead:
$.tmpl("Name: ${name}, ", [{name: "Tim"}, {name: "Boris"}]).text() === "Name: Tim, Name: Boris, "
Hint: Note the space after the comma.
Copied from https://github.com/nje/jquery-tmpl/issues#issue/27 Created 5 months ago by timmolendijk The following holds true:
While I'd expected this to hold true instead:
Hint: Note the space after the comma.