Scott González [Mon, 9 Nov 2009 02:36:32 +0000 (02:36 +0000)]
Tabs: Made detection of navigation more flexible - now the first descendant list (ul or ol) found will be used instead of forcing it to be the first child ul.
Fixes #4501 - Tabs should work with ordered lists (<ol>) in addition to unordered (<ul>)
Fixes #4506 - tabs(): allow more flexibility in specifying what list is used
Scott González [Mon, 9 Nov 2009 01:50:23 +0000 (01:50 +0000)]
Removed use of .data() for getting/setting options in tests; using each plugin's option method instead. Fixes #4853 - Remove use of .data() for options in tests.
Scott González [Fri, 6 Nov 2009 01:46:49 +0000 (01:46 +0000)]
Effects: Added support for animating borderColor (previously only supported individual borders, e.g., borderLeftColor). Fixes #4807 - $('').switchClass throwing error in IE8 if the switched class contains color property.
Scott González [Fri, 6 Nov 2009 01:12:09 +0000 (01:12 +0000)]
Effects: Force a non-empty hash of properties for class animations to ensure the callback is always executed. Fixes #4396 - animateClass does nothing if there are no styles changes. See jQuery core bug #5459 for the cause.
Richard Worth [Mon, 12 Oct 2009 14:32:31 +0000 (14:32 +0000)]
Slider: Fixed values getter to be trimmed by min and max as value method is. Added an overload to the values method for passing in an array of new values. Fixes #4522
Richard Worth [Mon, 12 Oct 2009 11:23:59 +0000 (11:23 +0000)]
slider: Removed undocumented noPropagation last arg from values method as per http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/a350889a377c59b8
Richard Worth [Mon, 12 Oct 2009 10:50:38 +0000 (10:50 +0000)]
Slider: Fixed animation to respond to keypress as well as mouse click, animation still does not occur at init or during mouse drag slide, both by design. Animation now occurs, if animate is on, when using the value method, but not when using the value option. This allows for animated and non-animated programmatic setting of values without changing the animate option.
Fixes #4432 - Allow animation when programmatically changing slider value
Fixes #4659 - Allow slider to animate if slider value is set programatically
Scott González [Sun, 20 Sep 2009 21:07:38 +0000 (21:07 +0000)]
Fixed the initialization of color animations for cases where the first step of the animation doesn't happen in the same millisecond as the call to animate. Fixes #4251 - NaN in color animation (Firefox 3).
Scott González [Fri, 18 Sep 2009 13:15:57 +0000 (13:15 +0000)]
Rewrote animateClass to work in webkit. Fixes #3112 - SwitchClass doesn't have any effect in Safari 3.1.1.
Based on trunk and effects dev branch implementations.
Richard Worth [Thu, 17 Sep 2009 10:39:12 +0000 (10:39 +0000)]
renamed all ui.*.js files to jquery.ui.*.js, all effects.*.js files to jquery.effects.*.js per announcement and discussion here http://groups.google.com/group/jquery-ui-dev/msg/d565a0c56e0cb935
accordion: trying to reset margin and padding for accordion-lis to get consistent results for fillSpace and autoHeight tests across platforms; if that works, may need to be applied in general, not just for tests
core tests: a few comments about failing tests, a few fixes for existing tests, mostly messages; primary remaining issue is that both $("area").is(":visible") and $("area").is(":hidden") return true, which is most likely a bug in jQuery core
accordion: remove deprecated alwaysOpen option (collapsible was introduced in last stable release); fixed collapsible-false accordion in combination with activate method (with fasly-argument to close all); changed activate-option default to 0 (which was the "computed" default anyway); lots of fixes for the testsuite, while removing some of the "missing" tests: header accepts only a selector (updated spec to make that more clear), while testing animations in unit tests is rather pointless
Richard Worth [Wed, 2 Sep 2009 19:23:38 +0000 (19:23 +0000)]
Fixed a bug in the drawing of all the graphs, especially visible in easeout curves. Added a top line to each graph. Added support for linear graph and preview. Slowed animation down a bit, to aid in preview.
Scott González [Sat, 29 Aug 2009 02:12:56 +0000 (02:12 +0000)]
Dialog demo: Use the ui-state-highlight class instead of a hard-coded color. Fixes #4808 - Modal dialog form validation demo - error message uses hard-coded color.