aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
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 /Makefile
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 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4f7538669..31f31825a 100644
--- a/Makefile
+++ b/Makefile
@@ -6,10 +6,12 @@ DOCS_DIR = ${PREFIX}/docs
TEST_DIR = ${PREFIX}/test
DIST_DIR = ${PREFIX}/dist
-MODULES = ${SRC_DIR}/jquery/*\
+MODULES = ${SRC_DIR}/intro.js\
+ ${SRC_DIR}/jquery/*\
${SRC_DIR}/event/*\
${SRC_DIR}/fx/*\
${SRC_DIR}/ajax/*
+ ${SRC_DIR}/outro.js\
JQ = ${DIST_DIR}/jquery.js
JQ_LITE = ${DIST_DIR}/jquery.lite.js