From b6306efe01dcad763c9d9668692359a3d68a46aa Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 11 Jun 2015 18:42:26 +0930 Subject: [PATCH] Add newline in-between JS files, in case last line is a comment --- framework/core/src/Assets/JsCompiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Assets/JsCompiler.php b/framework/core/src/Assets/JsCompiler.php index 3fc5a0c07..56a126e4b 100644 --- a/framework/core/src/Assets/JsCompiler.php +++ b/framework/core/src/Assets/JsCompiler.php @@ -4,6 +4,6 @@ class JsCompiler extends RevisionCompiler { public function format($string) { - return $string.';'; + return $string.";\n"; } }