|
9 | 9 | <property name="easing" type="String" default="swing">
|
10 | 10 | <desc>A string indicating which easing function to use for the transition.</desc>
|
11 | 11 | </property>
|
12 |
| - <property name="queue" type="Boolean" default="true"> |
| 12 | + <property name="queue" default="true"> |
13 | 13 | <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>
|
| 14 | + <type name="Boolean"/> |
| 15 | + <type name="String"/> |
14 | 16 | </property>
|
15 | 17 | <property name="specialEasing" type="PlainObject" added="1.4">
|
16 | 18 | <desc>A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions.</desc>
|
|
29 | 31 | <property name="progress" type="Function" added="1.8">
|
30 | 32 | <desc>A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties.</desc>
|
31 | 33 | <argument name="animation" type="Promise">
|
32 |
| - <desc>An enhanced Promise oject with additional properties for the animation</desc> |
| 34 | + <desc>An enhanced Promise object with additional properties for the animation</desc> |
33 | 35 | </argument>
|
34 | 36 | <argument name="progress" type="Number">
|
35 | 37 | <desc>A number from 0 to 1 indicating the progress of the animation</desc>
|
|
45 | 47 | <property name="done" type="Function" added="1.8">
|
46 | 48 | <desc>A function to be called when the animation completes (its Promise object is resolved).</desc>
|
47 | 49 | <argument name="animation" type="Promise">
|
48 |
| - <desc>An enhanced Promise oject with additional properties for the animation</desc> |
| 50 | + <desc>An enhanced Promise object with additional properties for the animation</desc> |
49 | 51 | </argument>
|
50 | 52 | <argument name="jumpedToEnd" type="Boolean">
|
51 | 53 | <desc>Indicates whether the animation jumped to the end</desc>
|
|
54 | 56 | <property name="fail" type="Function" added="1.8">
|
55 | 57 | <desc>A function to be called when the animation fails to complete (its Promise object is rejected).</desc>
|
56 | 58 | <argument name="animation" type="Promise">
|
57 |
| - <desc>An enhanced Promise oject with additional properties for the animation</desc> |
| 59 | + <desc>An enhanced Promise object with additional properties for the animation</desc> |
58 | 60 | </argument>
|
59 | 61 | <argument name="jumpedToEnd" type="Boolean">
|
60 | 62 | <desc>Indicates whether the animation jumped to the end</desc>
|
|
63 | 65 | <property name="always" type="Function" added="1.8">
|
64 | 66 | <desc>A function to be called when the animation completes or stops without completing (its Promise object is either resolved or rejected).</desc>
|
65 | 67 | <argument name="animation" type="Promise">
|
66 |
| - <desc>An enhanced Promise oject with additional properties for the animation</desc> |
| 68 | + <desc>An enhanced Promise object with additional properties for the animation</desc> |
67 | 69 | </argument>
|
68 | 70 | <argument name="jumpedToEnd" type="Boolean">
|
69 | 71 | <desc>Indicates whether the animation jumped to the end</desc>
|
|
0 commit comments