aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-09-15 14:51:55 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-09-15 14:51:55 +0000
commit770a92a594a803486a66603a67f559ff15915d8b (patch)
tree56c256e9b6c3906a620d7ba0875cda3fc1a8cf03 /build.xml
parentea53a61a38ecdddaea6f344fcaf74bfe1d37397c (diff)
downloadjquery-770a92a594a803486a66603a67f559ff15915d8b.tar.gz
jquery-770a92a594a803486a66603a67f559ff15915d8b.zip
Fixed bug #147, required some (ugly) modifications: changed function jQuery(...){} to jQuery = function(...){}, necessary because IE parses all function name(){} declarations before executing inline code; added intro.js and outro.js to both build.xml (tested) and Makefile (not tested) to include "if(typeof window.jQuery == "undefined") { ... }
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 1c85a8cdc..7cf2ab93d 100644
--- a/build.xml
+++ b/build.xml
@@ -17,11 +17,13 @@
<target name="jquery">
<echo message="Building ${JQ}" />
<mkdir dir="${DIST_DIR}" />
- <concat destfile="${JQ}">
+ <concat destfile="${JQ}">
+ <fileset dir="${SRC_DIR}" includes="intro.js" />
<fileset dir="${SRC_DIR}" includes="jquery/*.js" />
<fileset dir="${SRC_DIR}" includes="event/*.js" />
<fileset dir="${SRC_DIR}" includes="fx/*.js" />
- <fileset dir="${SRC_DIR}" includes="ajax/*.js" />
+ <fileset dir="${SRC_DIR}" includes="ajax/*.js" />
+ <fileset dir="${SRC_DIR}" includes="outro.js" />
</concat>
<echo message="${JQ} built." />
</target>