From 770a92a594a803486a66603a67f559ff15915d8b Mon Sep 17 00:00:00 2001 From: Jörn Zaefferer Date: Fri, 15 Sep 2006 14:51:55 +0000 Subject: 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") { ... } --- src/intro.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/intro.js (limited to 'src/intro.js') diff --git a/src/intro.js b/src/intro.js new file mode 100644 index 000000000..c26ac36cf --- /dev/null +++ b/src/intro.js @@ -0,0 +1,2 @@ +/* prevent execution of jQuery if included more then once */ +if(typeof window.jQuery == "undefined") { -- cgit v1.2.3