src/cm/media/js/lib/yui/yui_3.10.3/releasenotes/HISTORY.event-valuechange.md
changeset 525 89ef5ed3c48b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.10.3/releasenotes/HISTORY.event-valuechange.md	Tue Jul 16 14:29:46 2013 +0200
@@ -0,0 +1,140 @@
+ValueChange Change History
+==========================
+
+3.10.3
+------
+
+* No changes.
+
+3.10.2
+------
+
+* No changes.
+
+3.10.1
+------
+
+* No changes.
+
+3.10.0
+------
+
+* No changes.
+
+3.9.1
+-----
+
+* No changes.
+
+3.9.0
+-----
+* No changes.
+
+3.8.1
+-----
+
+* No changes.
+
+3.8.0
+-----
+
+  * No changes.
+
+3.7.3
+-----
+
+* No changes.
+
+3.7.2
+-----
+
+* No changes.
+
+3.7.1
+-----
+
+* No changes.
+
+3.7.0
+-----
+
+* No changes.
+
+3.6.0
+-----
+
+* No changes.
+
+3.5.1
+-----
+
+* No changes.
+
+3.5.0
+-----
+
+* Changed the name of the synthetic event to "valuechange" (all lowercase) for
+  greater consistency with DOM event names. The older "valueChange" name will
+  continue to be supported indefinitely, but for consistency I recommend
+  switching to "valuechange".
+
+* Added support for delegated valuechange events. You can now use `delegate()`
+  to attach a valuechange event to a container node and be notified of changes
+  to any descendant that matches the specified delegation filter.
+
+* The valuechange event facade now includes `currentTarget` and `target`
+  properties like a good little synthetic event.
+
+
+3.4.1
+-----
+
+* No changes.
+
+
+3.4.0
+-----
+
+* No changes.
+
+
+3.3.0
+-----
+
+* Focus is now used (in addition to keyboard and mouse events) as a sign that
+  we should begin polling for value changes. [Ticket #2529294]
+
+* If the value changes while an element is not focused, that change will no
+  longer be reported the next time polling is started (since it couldn't have
+  been user input).
+
+
+3.2.0
+-----
+
+* Module renamed to `event-valuechange` and refactored to be a true synthetic
+  event.
+
+* The `value` and `oldValue` event facade properties were renamed to `newVal`
+  and `prevVal` respectively, for consistency with other change event facades
+  throughout the library.
+
+* Performance improvements.
+
+
+3.1.2
+-----
+
+* No changes.
+
+
+3.1.1
+-----
+
+* No changes.
+
+
+3.1.0
+-----
+
+* Initial release as `value-change`.