~bcsaller/juju-gui/update-reductions

« back to all changes in this revision

Viewing changes to lib/yui/releasenotes/HISTORY.event-valuechange.md

  • Committer: kapil.foss at gmail
  • Date: 2012-07-13 18:45:59 UTC
  • Revision ID: kapil.foss@gmail.com-20120713184559-2xl7be17egsrz0c9
reshape

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ValueChange Change History
2
 
==========================
3
 
 
4
 
3.5.1
5
 
-----
6
 
 
7
 
* No changes.
8
 
 
9
 
3.5.0
10
 
-----
11
 
 
12
 
* Changed the name of the synthetic event to "valuechange" (all lowercase) for
13
 
  greater consistency with DOM event names. The older "valueChange" name will
14
 
  continue to be supported indefinitely, but for consistency I recommend
15
 
  switching to "valuechange".
16
 
 
17
 
* Added support for delegated valuechange events. You can now use `delegate()`
18
 
  to attach a valuechange event to a container node and be notified of changes
19
 
  to any descendant that matches the specified delegation filter.
20
 
 
21
 
* The valuechange event facade now includes `currentTarget` and `target`
22
 
  properties like a good little synthetic event.
23
 
 
24
 
 
25
 
3.4.1
26
 
-----
27
 
 
28
 
* No changes.
29
 
 
30
 
 
31
 
3.4.0
32
 
-----
33
 
 
34
 
* No changes.
35
 
 
36
 
 
37
 
3.3.0
38
 
-----
39
 
 
40
 
* Focus is now used (in addition to keyboard and mouse events) as a sign that
41
 
  we should begin polling for value changes. [Ticket #2529294]
42
 
 
43
 
* If the value changes while an element is not focused, that change will no
44
 
  longer be reported the next time polling is started (since it couldn't have
45
 
  been user input).
46
 
 
47
 
 
48
 
3.2.0
49
 
-----
50
 
 
51
 
* Module renamed to `event-valuechange` and refactored to be a true synthetic
52
 
  event.
53
 
 
54
 
* The `value` and `oldValue` event facade properties were renamed to `newVal`
55
 
  and `prevVal` respectively, for consistency with other change event facades
56
 
  throughout the library.
57
 
 
58
 
* Performance improvements.
59
 
 
60
 
 
61
 
3.1.2
62
 
-----
63
 
 
64
 
* No changes.
65
 
 
66
 
 
67
 
3.1.1
68
 
-----
69
 
 
70
 
* No changes.
71
 
 
72
 
 
73
 
3.1.0
74
 
-----
75
 
 
76
 
* Initial release as `value-change`.