diff options
author | John Resig <jeresig@gmail.com> | 2006-08-14 02:17:22 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-14 02:17:22 +0000 |
commit | 7e5a2bd738f9acff63e97c108be6768cf4a45531 (patch) | |
tree | b4b32edd1167de88d4958e8e5e63d6da53d01f7b /build | |
parent | f8402b9a081f0096986d140f809f4d57c6db7834 (diff) | |
download | jquery-7e5a2bd738f9acff63e97c108be6768cf4a45531.tar.gz jquery-7e5a2bd738f9acff63e97c108be6768cf4a45531.zip |
Fixed some formatting errors with the output of lite.
Diffstat (limited to 'build')
-rw-r--r-- | build/build/lite.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/build/lite.js b/build/build/lite.js index bcfb096b1..650009abf 100644 --- a/build/build/lite.js +++ b/build/build/lite.js @@ -1,6 +1,6 @@ load("build/js/writeFile.js"); -var blockMatch = /\s*\/\*\*\s*((.|\n)*?)\n*\*\/\s*/g; -var f = readFile(arguments[0]).replace( blockMatch, "" ); +var blockMatch = /\s*\/\*\*\s*((.|\n)*?)\s*\*\/\n*/g; +var f = readFile(arguments[0]).replace( blockMatch, "\n" ); writeFile( arguments[1], f ); |