aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2011-10-22 16:06:57 -0400
committertimmywil <timmywillisn@gmail.com>2011-10-22 16:06:57 -0400
commite1a5d3ebfbf963f373d8c6aa2fbec36bacc200be (patch)
treeaca4ea05bc818e3f9e50d18bb795bb44dc46f541
parentc51b29477e2884fc28cfe4de5b64308177678262 (diff)
downloadjquery-e1a5d3ebfbf963f373d8c6aa2fbec36bacc200be.tar.gz
jquery-e1a5d3ebfbf963f373d8c6aa2fbec36bacc200be.zip
Landing pull request 560. Further reduce minimal header. Fixes #10553.
More Details: - https://github.com/jquery/jquery/pull/560 - http://bugs.jquery.com/ticket/10553
-rw-r--r--build/post-compile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/post-compile.js b/build/post-compile.js
index 98b8b849f..afcebf278 100644
--- a/build/post-compile.js
+++ b/build/post-compile.js
@@ -5,7 +5,7 @@ var print = require( "sys" ).print,
src = fs.readFileSync( process.argv[2], "utf8" ),
version = fs.readFileSync( "version.txt", "utf8" ),
// License Template
- license = "/*! jQuery v@VERSION http://jquery.com/ | http://jquery.org/license */";
+ license = "/*! jQuery v@VERSION jquery.com | jquery.org/license */";
// Previously done in sed but reimplemented here due to portability issues