Rebuild for #28

This commit is contained in:
Ruben Vermeersch 2017-03-20 10:27:12 +01:00
parent f035affef6
commit bb56f6e34c
2 changed files with 3 additions and 3 deletions

4
dist/pofile.js vendored
View File

@ -23,12 +23,12 @@ PO.prototype.toString = function () {
if (this.comments) { if (this.comments) {
this.comments.forEach(function (comment) { this.comments.forEach(function (comment) {
lines.push('# ' + comment); lines.push(('# ' + comment).trim());
}); });
} }
if (this.extractedComments) { if (this.extractedComments) {
this.extractedComments.forEach(function (comment) { this.extractedComments.forEach(function (comment) {
lines.push('#. ' + comment); lines.push(('#. ' + comment).trim());
}); });
} }

2
dist/pofile.min.js vendored

File diff suppressed because one or more lines are too long