|
525
|
1 |
Node Change History |
|
|
2 |
=================== |
|
|
3 |
|
|
|
4 |
3.10.3 |
|
|
5 |
------ |
|
|
6 |
|
|
|
7 |
* No changes. |
|
|
8 |
|
|
|
9 |
3.10.2 |
|
|
10 |
------ |
|
|
11 |
|
|
|
12 |
* The `show()` and `hide()` methods now set and remove a node's `hidden` |
|
|
13 |
attribute, which provides a semantic indication of hidden content and improves |
|
|
14 |
accessibility. [Gerard Cohen] |
|
|
15 |
|
|
|
16 |
3.10.1 |
|
|
17 |
------ |
|
|
18 |
|
|
|
19 |
* No changes. |
|
|
20 |
|
|
|
21 |
3.10.0 |
|
|
22 |
------ |
|
|
23 |
|
|
|
24 |
* [!] Removed `node-deprecated` module. [Ryuichi Okumura] |
|
|
25 |
|
|
|
26 |
* Fix node.all() to return an empty NodeList if the node was destroyed - Fixes #580 (hat tip Dallas Wheeler) |
|
|
27 |
|
|
|
28 |
3.9.1 |
|
|
29 |
----- |
|
|
30 |
|
|
|
31 |
* No changes. |
|
|
32 |
|
|
|
33 |
3.9.0 |
|
|
34 |
----- |
|
|
35 |
|
|
|
36 |
* No changes. |
|
|
37 |
|
|
|
38 |
3.8.1 |
|
|
39 |
----- |
|
|
40 |
|
|
|
41 |
* Fix show, hide and toggleView methods in transition module Deals with - http://yuilibrary.com/forum/viewtopic.php?p=36173 [Prajwalit Bhopale] |
|
|
42 |
|
|
|
43 |
3.8.0 |
|
|
44 |
----- |
|
|
45 |
|
|
|
46 |
* No changes. |
|
|
47 |
|
|
|
48 |
3.7.3 |
|
|
49 |
----- |
|
|
50 |
|
|
|
51 |
* No changes. |
|
|
52 |
|
|
|
53 |
3.7.2 |
|
|
54 |
----- |
|
|
55 |
|
|
|
56 |
* No changes. |
|
|
57 |
|
|
|
58 |
3.7.1 |
|
|
59 |
----- |
|
|
60 |
|
|
|
61 |
* No changes. |
|
|
62 |
|
|
|
63 |
3.7.0 |
|
|
64 |
----- |
|
|
65 |
|
|
|
66 |
* No changes. |
|
|
67 |
|
|
|
68 |
3.6.0 |
|
|
69 |
----- |
|
|
70 |
* No changes. |
|
|
71 |
|
|
|
72 |
3.5.1 |
|
|
73 |
----- |
|
|
74 |
* Bug fix: Force case-insensitive removeAttribute in IE. [Ticket 2532192] |
|
|
75 |
|
|
|
76 |
3.5.0 |
|
|
77 |
----- |
|
|
78 |
|
|
|
79 |
* Bug fix: Children collection now accessible from documentFragments. [Ticket 2531356] |
|
|
80 |
* Bug fix: The compareTo() method now works across sandboxes. [Ticket 2530381] |
|
|
81 |
|
|
|
82 |
|
|
|
83 |
3.4.1 |
|
|
84 |
----- |
|
|
85 |
|
|
|
86 |
* Bug fix: Calling insert(null) was throwing an error. [Ticket 2529991] |
|
|
87 |
|
|
|
88 |
* Bug fix: The removeAttribute method was not chainable in IE < 9. |
|
|
89 |
[Ticket 2529230] |
|
|
90 |
|
|
|
91 |
* Bug fix: Calling Y.all() without arguments was failing to return an empty |
|
|
92 |
NodeList. [Ticket 2530164] |
|
|
93 |
|
|
|
94 |
* Added optional stopAt function/selector argument for ancestor/ancestors(). |
|
|
95 |
|
|
|
96 |
|
|
|
97 |
3.4.0 |
|
|
98 |
----- |
|
|
99 |
|
|
|
100 |
* [!] The empty() method now always does a recursive purge. [Ticket 2529829] |
|
|
101 |
|
|
|
102 |
* Added the getDOMNode() and getDOMNodes() methods to Node and NodeList |
|
|
103 |
prototypes. |
|
|
104 |
|
|
|
105 |
* The one() method now accepts IDs that begin with a number. [Ticket 2529376] |
|
|
106 |
|
|
|
107 |
* Bug fix: NodeList show()/hide() methods were broken with Transition. |
|
|
108 |
[Ticket 2529908] |
|
|
109 |
|
|
|
110 |
* Bug fix: Some NodeList array methods were returning incorrectly. |
|
|
111 |
[Ticket 2529942] |
|
|
112 |
|
|
|
113 |
|
|
|
114 |
3.3.0 |
|
|
115 |
----- |
|
|
116 |
|
|
|
117 |
* Added wrap()/unwrap(), show()/hide(), empty(), and load() methods. |
|
|
118 |
|
|
|
119 |
* Added Array 1.5 methods to NodeList. |
|
|
120 |
|
|
|
121 |
* Added the destroy() method to NodeList. [Ticket 2529256] |
|
|
122 |
|
|
|
123 |
* Added the once() method to NodeList. [Ticket 2529369] |
|
|
124 |
|
|
|
125 |
* The appendChild() and insertBefore() methods now accept HTML. |
|
|
126 |
[Ticket 2529301] |
|
|
127 |
|
|
|
128 |
* Added the appendTo() method. [Ticket 2529299] |
|
|
129 |
|
|
|
130 |
* Added the ancestors() method. [Ticket 2528610] |
|
|
131 |
|
|
|
132 |
* The setStyle() method now ignores undefined values. |
|
|
133 |
|
|
|
134 |
* Bug fix: Enable querying cloned nodes in IE 6/7. [Ticket 2529487] |
|
|
135 |
|
|
|
136 |
|
|
|
137 |
3.2.0 |
|
|
138 |
----- |
|
|
139 |
|
|
|
140 |
* Added the transition() method. |
|
|
141 |
|
|
|
142 |
* Bug fix: checked pseudo-class for IE input elements. [Ticket 2528895] |
|
|
143 |
|
|
|
144 |
* Bug fix: Fixed IE8 input element rendering. [Ticket 2529035] |
|
|
145 |
|
|
|
146 |
|
|
|
147 |
3.1.1 |
|
|
148 |
----- |
|
|
149 |
|
|
|
150 |
* Bug fix: The setContent() method incorrectly handled falsey values. |
|
|
151 |
[Ticket 2528740] |
|
|
152 |
|
|
|
153 |
|
|
|
154 |
3.1.0 |
|
|
155 |
----- |
|
|
156 |
|
|
|
157 |
* Added support for invalid IDs. [Ticket 2528195] |
|
|
158 |
|
|
|
159 |
* Fix duplicate IDs across YUI instances. [Ticket 2528199] |
|
|
160 |
|
|
|
161 |
* Allow empty setContent() call to remove content. [Ticket 2528269] |
|
|
162 |
|
|
|
163 |
* Bug fix: Arguments passed to next() were being incorrectly handled. |
|
|
164 |
[Ticket 2528295] |
|
|
165 |
|
|
|
166 |
|
|
|
167 |
3.0.0 |
|
|
168 |
----- |
|
|
169 |
|
|
|
170 |
* Initial release. |