1
0
mirror of https://github.com/flarum/core.git synced 2025-07-24 02:01:19 +02:00

Add newline in-between JS files, in case last line is a comment

This commit is contained in:
Toby Zerner
2015-06-11 18:42:26 +09:30
parent 443a231aa5
commit b6306efe01

View File

@@ -4,6 +4,6 @@ class JsCompiler extends RevisionCompiler
{ {
public function format($string) public function format($string)
{ {
return $string.';'; return $string.";\n";
} }
} }