This commit is contained in:
Michael Ficarra 2013-06-13 13:35:40 -05:00
parent c8dae22cb0
commit 054443c46e
1 changed files with 2 additions and 2 deletions

View File

@ -822,11 +822,11 @@
Comment.prototype.compileNode = function(o, level) { Comment.prototype.compileNode = function(o, level) {
var code; var code;
code = "/*" + (multident(this.comment, this.tab)) + (__indexOf.call(this.comment, '\n') >= 0 ? "\n" + this.tab : '') + "*/\n"; code = "/*" + (multident(this.comment, this.tab)) + (__indexOf.call(this.comment, '\n') >= 0 ? "\n" + this.tab : '') + "*/";
if ((level || o.level) === LEVEL_TOP) { if ((level || o.level) === LEVEL_TOP) {
code = o.indent + code; code = o.indent + code;
} }
return [this.makeCode(code)]; return [this.makeCode("\n", this.makeCode(code))];
}; };
return Comment; return Comment;