Skip to content

Commit 860c7b1

Browse files
committed
Convert all parameter elements to argument elements.
1 parent 3300318 commit 860c7b1

11 files changed

Lines changed: 42 additions & 51 deletions

File tree

entries/animate.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
</option>
3535
<option name="step" type="Function">
3636
<desc>A function to be called after each step of the animation.</desc>
37-
<parameter name="now" type="Number">
37+
<argument name="now" type="Number">
3838
<desc>The numeric value of the property being animated at each step</desc>
39-
</parameter>
40-
<parameter name="fx" type="PlainObject">
39+
</argument>
40+
<argument name="fx" type="PlainObject">
4141
<desc>A map of properties related to the animation and the element being animated</desc>
4242
<property name="elem" type="DOM">
4343
<desc>The animated element</desc>
@@ -51,7 +51,7 @@
5151
<property name="prop" type="String">
5252
<desc>The property being animated</desc>
5353
</property>
54-
</parameter>
54+
</argument>
5555
</option>
5656
<option name="queue" type="Boolean" default="true">
5757
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/fadeIn.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
</option>
4444
<option name="step" type="Function">
4545
<desc>A function to be called after each step of the animation.</desc>
46-
<parameter name="now" type="Number">
46+
<argument name="now" type="Number">
4747
<desc>The numeric value of the property being animated at each step</desc>
48-
</parameter>
49-
<parameter name="fx" type="PlainObject">
48+
</argument>
49+
<argument name="fx" type="PlainObject">
5050
<desc>A map of properties related to the animation and the element being animated</desc>
5151
<property name="elem" type="DOM">
5252
<desc>The animated element</desc>
@@ -60,7 +60,7 @@
6060
<property name="prop" type="String">
6161
<desc>The property being animated</desc>
6262
</property>
63-
</parameter>
63+
</argument>
6464
</option>
6565
<option name="queue" type="Boolean" default="true">
6666
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/fadeOut.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
</option>
4444
<option name="step" type="Function">
4545
<desc>A function to be called after each step of the animation.</desc>
46-
<parameter name="now" type="Number">
46+
<argument name="now" type="Number">
4747
<desc>The numeric value of the property being animated at each step</desc>
48-
</parameter>
49-
<parameter name="fx" type="PlainObject">
48+
</argument>
49+
<argument name="fx" type="PlainObject">
5050
<desc>A map of properties related to the animation and the element being animated</desc>
5151
<property name="elem" type="DOM">
5252
<desc>The animated element</desc>
@@ -60,7 +60,7 @@
6060
<property name="prop" type="String">
6161
<desc>The property being animated</desc>
6262
</property>
63-
</parameter>
63+
</argument>
6464
</option>
6565
<option name="queue" type="Boolean" default="true">
6666
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/fadeToggle.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
</option>
3535
<option name="step" type="Function">
3636
<desc>A function to be called after each step of the animation.</desc>
37-
<parameter name="now" type="Number">
37+
<argument name="now" type="Number">
3838
<desc>The numeric value of the property being animated at each step</desc>
39-
</parameter>
40-
<parameter name="fx" type="PlainObject">
39+
</argument>
40+
<argument name="fx" type="PlainObject">
4141
<desc>A map of properties related to the animation and the element being animated</desc>
4242
<property name="elem" type="DOM">
4343
<desc>The animated element</desc>
@@ -51,7 +51,7 @@
5151
<property name="prop" type="String">
5252
<desc>The property being animated</desc>
5353
</property>
54-
</parameter>
54+
</argument>
5555
</option>
5656
<option name="queue" type="Boolean" default="true">
5757
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/hide.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
</option>
4747
<option name="step" type="Function">
4848
<desc>A function to be called after each step of the animation.</desc>
49-
<parameter name="now" type="Number">
49+
<argument name="now" type="Number">
5050
<desc>The numeric value of the property being animated at each step</desc>
51-
</parameter>
52-
<parameter name="fx" type="PlainObject">
51+
</argument>
52+
<argument name="fx" type="PlainObject">
5353
<desc>A map of properties related to the animation and the element being animated</desc>
5454
<property name="elem" type="DOM">
5555
<desc>The animated element</desc>
@@ -63,7 +63,7 @@
6363
<property name="prop" type="String">
6464
<desc>The property being animated</desc>
6565
</property>
66-
</parameter>
66+
</argument>
6767
</option>
6868
<option name="queue" type="Boolean" default="true">
6969
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/show.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@
4646
</option>
4747
<option name="step" type="Function">
4848
<desc>A function to be called after each step of the animation.</desc>
49-
<parameter name="now" type="Number">
49+
<argument name="now" type="Number">
5050
<desc>The numeric value of the property being animated at each step</desc>
51-
</parameter>
52-
<parameter name="fx" type="PlainObject">
51+
</argument>
52+
<argument name="fx" type="PlainObject">
5353
<desc>A map of properties related to the animation and the element being animated</desc>
5454
<property name="elem" type="DOM">
5555
<desc>The animated element</desc>
@@ -63,7 +63,7 @@
6363
<property name="prop" type="String">
6464
<desc>The property being animated</desc>
6565
</property>
66-
</parameter>
66+
</argument>
6767
</option>
6868
<option name="queue" type="Boolean" default="true">
6969
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/slideDown.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
</option>
4444
<option name="step" type="Function">
4545
<desc>A function to be called after each step of the animation.</desc>
46-
<parameter name="now" type="Number">
46+
<argument name="now" type="Number">
4747
<desc>The numeric value of the property being animated at each step</desc>
48-
</parameter>
49-
<parameter name="fx" type="PlainObject">
48+
</argument>
49+
<argument name="fx" type="PlainObject">
5050
<desc>A map of properties related to the animation and the element being animated</desc>
5151
<property name="elem" type="DOM">
5252
<desc>The animated element</desc>
@@ -60,7 +60,7 @@
6060
<property name="prop" type="String">
6161
<desc>The property being animated</desc>
6262
</property>
63-
</parameter>
63+
</argument>
6464
</option>
6565
<option name="queue" type="Boolean" default="true">
6666
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/slideToggle.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
</option>
4444
<option name="step" type="Function">
4545
<desc>A function to be called after each step of the animation.</desc>
46-
<parameter name="now" type="Number">
46+
<argument name="now" type="Number">
4747
<desc>The numeric value of the property being animated at each step</desc>
48-
</parameter>
49-
<parameter name="fx" type="PlainObject">
48+
</argument>
49+
<argument name="fx" type="PlainObject">
5050
<desc>A map of properties related to the animation and the element being animated</desc>
5151
<property name="elem" type="DOM">
5252
<desc>The animated element</desc>
@@ -60,7 +60,7 @@
6060
<property name="prop" type="String">
6161
<desc>The property being animated</desc>
6262
</property>
63-
</parameter>
63+
</argument>
6464
</option>
6565
<option name="queue" type="Boolean" default="true">
6666
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/slideUp.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
</option>
4444
<option name="step" type="Function">
4545
<desc>A function to be called after each step of the animation.</desc>
46-
<parameter name="now" type="Number">
46+
<argument name="now" type="Number">
4747
<desc>The numeric value of the property being animated at each step</desc>
48-
</parameter>
49-
<parameter name="fx" type="PlainObject">
48+
</argument>
49+
<argument name="fx" type="PlainObject">
5050
<desc>A map of properties related to the animation and the element being animated</desc>
5151
<property name="elem" type="DOM">
5252
<desc>The animated element</desc>
@@ -60,7 +60,7 @@
6060
<property name="prop" type="String">
6161
<desc>The property being animated</desc>
6262
</property>
63-
</parameter>
63+
</argument>
6464
</option>
6565
<option name="queue" type="Boolean" default="true">
6666
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

entries/toggle.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
</option>
5050
<option name="step" type="Function">
5151
<desc>A function to be called after each step of the animation.</desc>
52-
<parameter name="now" type="Number">
52+
<argument name="now" type="Number">
5353
<desc>The numeric value of the property being animated at each step</desc>
54-
</parameter>
55-
<parameter name="fx" type="PlainObject">
54+
</argument>
55+
<argument name="fx" type="PlainObject">
5656
<desc>A map of properties related to the animation and the element being animated</desc>
5757
<property name="elem" type="DOM">
5858
<desc>The animated element</desc>
@@ -66,7 +66,7 @@
6666
<property name="prop" type="String">
6767
<desc>The property being animated</desc>
6868
</property>
69-
</parameter>
69+
</argument>
7070
</option>
7171
<option name="queue" type="Boolean" default="true">
7272
<desc>A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. <strong>As of jQuery 1.7</strong>, the queue option can also accept a string, in which case the animation is added to the queue represented by that string.</desc>

0 commit comments

Comments
 (0)