-
Notifications
You must be signed in to change notification settings - Fork 1.3k
YUI 3.17.0 Change History Rollup
Andrew Wooldridge edited this page May 19, 2014
·
7 revisions
- [ModelSync.Local] Stringify hash before saving.
- #1752: Y.Calendar.selectDates fails when passed the maximumDate with minutes/seconds (@mairatma)
- #1749: Fix left/right margin issues with dual-panel calendars
-
#1724: Fix issues with
calendarnavigation
month :hover and disabled styles
- #1778 Filter mousedown events to check that they belong to a valid drop target. (Andrew Nicols)
- #1709: Move out of color-base module (@okuryu)
- [Editor]: Increase specificity of when to set cursor.
- [Editor]: Check for the existence of
node
before removing it.
- Add support for optional dependencies. These dependencies are conditionally
loaded but each dependency is responsible for determining the result of the
test, the opposite of
condition
. Example:
YUI({
modules: {
foo: {
test: function (Y) {
return true;
}
},
bar: {
optionalRequires: ['foo']
}
}
}).use('bar', ...);
- #1772 Correct check for IE UserAgent to make sure that the browser is IE. (Andrew Nicols)
- [Node]: Add
invalid
to event whitelist.
- Fixed: Moving a node to another tree fails when that node has children. (#1689: @rgrove)
2