Renamed the 'fx' module to 'effects'. Should've been done a long time ago.
authorjeresig <jeresig@gmail.com>
Fri, 18 Dec 2009 16:01:19 +0000 (11:01 -0500)
committerjeresig <jeresig@gmail.com>
Fri, 18 Dec 2009 16:01:19 +0000 (11:01 -0500)
Makefile
Rakefile
build.xml
src/effects.js [moved from src/fx.js with 100% similarity]
test/index.html
test/unit/effects.js [moved from test/unit/fx.js with 99% similarity]

index bf1b2e7..2bf19fe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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
 
index 92176a6..ebffabf 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -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/, "")
index 363482a..581d130 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -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" />
similarity index 100%
rename from src/fx.js
rename to src/effects.js
index 6d34672..4632442 100644 (file)
@@ -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>
 
similarity index 99%
rename from test/unit/fx.js
rename to test/unit/effects.js
index b959799..2c5616d 100644 (file)
@@ -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
+});