From 8df82d2b04505a45408c2fcf22859a4c60af2e58 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 29 Sep 2009 18:06:16 +0000 Subject: [PATCH] Moved the init test script off into a separate file. --- test/data/testinit.js | 4 ++++ test/index.html | 7 +------ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 test/data/testinit.js diff --git a/test/data/testinit.js b/test/data/testinit.js new file mode 100644 index 0000000..41aa396 --- /dev/null +++ b/test/data/testinit.js @@ -0,0 +1,4 @@ +var jQuery = this.jQuery || "jQuery", // For testing .noConflict() + $ = this.$ || "$", + originaljQuery = jQuery, + original$ = $; diff --git a/test/index.html b/test/index.html index 414bf75..887609d 100644 --- a/test/index.html +++ b/test/index.html @@ -8,12 +8,7 @@ ol#empty { opacity: 0; filter:Alpha(opacity=0); } /* for testing opacity set in styles in IE */ - + -- 1.7.10.4