public
Description: jQuery JavaScript Library
Homepage: http://jquery.com/
Clone URL: git://github.com/jquery/jquery.git
Renamed the 'fx' module to 'effects'. Should've been done a long time ago.
jeresig (author)
Fri Dec 18 08:01:19 -0800 2009
commit  b70872f70d720e5f25eea7fdf0453804074dc194
tree    9624b1f7de8c8650d5038c53645a7b4a85786668
parent  9368b188c06dd66d43e3a488465078e1d6eb765f
...
15
16
17
18
 
19
20
21
...
15
16
17
 
18
19
20
21
0
@@ -15,7 +15,7 @@ BASE_FILES = ${SRC_DIR}/core.js\
0
   ${SRC_DIR}/manipulation.js\
0
   ${SRC_DIR}/css.js\
0
   ${SRC_DIR}/ajax.js\
0
-  ${SRC_DIR}/fx.js\
0
+  ${SRC_DIR}/effects.js\
0
   ${SRC_DIR}/offset.js\
0
   ${SRC_DIR}/dimensions.js
0
 
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 # Basic Rakefile for building jQuery
0
-files = [ "intro", "core", "support", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "fx", "offset", "dimensions", "outro" ]
0
+files = [ "intro", "core", "support", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "effects", "offset", "dimensions", "outro" ]
0
 
0
 date = `git log -1 | grep Date: | sed 's/[^:]*: *//'`.gsub(/\n/, "")
0
 version = `cat version.txt`.gsub(/\n/, "")
...
54
55
56
57
 
58
59
60
...
54
55
56
 
57
58
59
60
0
@@ -54,7 +54,7 @@
0
             <fileset file="src/manipulation.js" />
0
             <fileset file="src/css.js" />
0
             <fileset file="src/ajax.js" />
0
-            <fileset file="src/fx.js" />
0
+            <fileset file="src/effects.js" />
0
             <fileset file="src/offset.js" />
0
             <fileset file="src/dimensions.js" />
0
             <fileset file="src/outro.js" />
...
21
22
23
24
 
25
26
27
...
21
22
23
 
24
25
26
27
0
@@ -21,7 +21,7 @@
0
   <script type="text/javascript" src="unit/selector.js"></script>
0
   <script type="text/javascript" src="unit/event.js"></script>
0
   <script type="text/javascript" src="unit/ajax.js"></script>
0
-  <script type="text/javascript" src="unit/fx.js"></script>
0
+  <script type="text/javascript" src="unit/effects.js"></script>
0
   <script type="text/javascript" src="unit/offset.js"></script>
0
 </head>
0
 

Comments