1
0
mirror of https://github.com/flarum/core.git synced 2025-08-03 06:57:54 +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 42fe2a28dd
commit 48e33591c9

View File

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