diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | Rakefile | 2 | ||||
-rw-r--r-- | build.xml | 2 | ||||
-rw-r--r-- | src/effects.js (renamed from src/fx.js) | 0 | ||||
-rw-r--r-- | test/index.html | 2 | ||||
-rw-r--r-- | test/unit/effects.js (renamed from test/unit/fx.js) | 4 |
6 files changed, 6 insertions, 6 deletions
@@ -15,7 +15,7 @@ BASE_FILES = ${SRC_DIR}/core.js\ ${SRC_DIR}/manipulation.js\ ${SRC_DIR}/css.js\ ${SRC_DIR}/ajax.js\ - ${SRC_DIR}/fx.js\ + ${SRC_DIR}/effects.js\ ${SRC_DIR}/offset.js\ ${SRC_DIR}/dimensions.js @@ -1,5 +1,5 @@ # Basic Rakefile for building jQuery -files = [ "intro", "core", "support", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "fx", "offset", "dimensions", "outro" ] +files = [ "intro", "core", "support", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "effects", "offset", "dimensions", "outro" ] date = `git log -1 | grep Date: | sed 's/[^:]*: *//'`.gsub(/\n/, "") version = `cat version.txt`.gsub(/\n/, "") @@ -54,7 +54,7 @@ <fileset file="src/manipulation.js" /> <fileset file="src/css.js" /> <fileset file="src/ajax.js" /> - <fileset file="src/fx.js" /> + <fileset file="src/effects.js" /> <fileset file="src/offset.js" /> <fileset file="src/dimensions.js" /> <fileset file="src/outro.js" /> diff --git a/src/fx.js b/src/effects.js index 6bcaac030..6bcaac030 100644 --- a/src/fx.js +++ b/src/effects.js diff --git a/test/index.html b/test/index.html index 6d34672d3..4632442a5 100644 --- a/test/index.html +++ b/test/index.html @@ -21,7 +21,7 @@ <script type="text/javascript" src="unit/selector.js"></script> <script type="text/javascript" src="unit/event.js"></script> <script type="text/javascript" src="unit/ajax.js"></script> - <script type="text/javascript" src="unit/fx.js"></script> + <script type="text/javascript" src="unit/effects.js"></script> <script type="text/javascript" src="unit/offset.js"></script> </head> diff --git a/test/unit/fx.js b/test/unit/effects.js index b95979938..2c5616dd9 100644 --- a/test/unit/fx.js +++ b/test/unit/effects.js @@ -1,4 +1,4 @@ -module("fx"); +module("effects"); test("show()", function() { expect(16); @@ -619,4 +619,4 @@ test("animate with per-property easing", function(){ ok(_default_test_called, "Easing function (_default) called"); }); -});
\ No newline at end of file +}); |