From 547bfc455ce59297b054ab3e7095f0de69f8cbc5 Mon Sep 17 00:00:00 2001 From: Niklas Wagner Date: Sat, 25 Mar 2017 18:21:21 +0100 Subject: [PATCH] Remove unnecessary spaces --- dist/components/inject-as-comment.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/components/inject-as-comment.js b/dist/components/inject-as-comment.js index 9308231..39a1aa9 100644 --- a/dist/components/inject-as-comment.js +++ b/dist/components/inject-as-comment.js @@ -33,15 +33,15 @@ var InjectAsComment = (function () { return new Promise(function (resolve, reject) { resolve(); }); }; InjectAsComment.prototype.injectIntoCss = function (asset) { - var modAsset = "/** [" + config.SHORT + "] Build version: " + this.context.version + " **/ " + endOfLine + " " + asset.source() + " "; + var modAsset = "/** [" + config.SHORT + "] Build version: " + this.context.version + " **/" + endOfLine + asset.source(); asset.source = function () { return modAsset; }; }; InjectAsComment.prototype.injectIntoHtml = function (asset) { - var modAsset = " " + endOfLine + " " + asset.source() + " "; + var modAsset = "" + endOfLine + asset.source(); asset.source = function () { return modAsset; }; }; InjectAsComment.prototype.injectIntoJs = function (asset) { - var modAsset = "// [" + config.SHORT + "] Build version: " + this.context.version + " " + endOfLine + " " + asset.source() + " "; + var modAsset = "// [" + config.SHORT + "] Build version: " + this.context.version + endOfLine + " " + asset.source(); asset.source = function () { return modAsset; }; }; return InjectAsComment;