From: Jörn Zaefferer Date: Sat, 10 Mar 2012 13:16:13 +0000 (+0100) Subject: Build: Modify uglify.js to include a newline charakter after the copyright comment... X-Git-Tag: 1.9.0m8~192 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f8bad0441d58954d60440886964178e80f8ae6ec;p=jquery-ui.git Build: Modify uglify.js to include a newline charakter after the copyright comment, makes diffing against new build a little bit more efficient --- diff --git a/build/build/uglify.js b/build/build/uglify.js index aad18e8ca..5b3fad4da 100644 --- a/build/build/uglify.js +++ b/build/build/uglify.js @@ -230,7 +230,7 @@ function show_copyright(comments) { if (c.type == "comment1") { ret += "//" + c.value + "\n"; } else { - ret += "/*" + c.value + "*/"; + ret += "/*" + c.value + "*/\n"; } } return ret;