Skip to content

Commit 04f54fa

Browse files
committed
Update dependencies, merge docs from master.
1 parent 6ca0ba6 commit 04f54fa

File tree

91 files changed

+24413
-3125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+24413
-3125
lines changed

cat2tax.xsl

-25
This file was deleted.

categories.xml

+23-19
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
<categories>
2+
<category name="Uncategorized" slug="uncategorized"/>
23
<category name="Effects" slug="effects">
3-
<desc>
4-
<p>Effects include extensions to jQuery's built-in animate method, providing support for animating colors and doing transitions from one class to another.</p>
5-
<div class="longdesc">
6-
<p>For class transitions, <code>addClass(class)</code>, <code>removeClass(class)</code>, <code>toggleClass(class)</code> and <code>toggleClass(switch)</code> are each extended to accept three additional parameters: <code>speed</code>, <code>easing</code> (optional), and <code>callback</code>.</p>
7-
<p>In addition, a <code>switchClass</code> method is added, alllowing you to visually transition from one class to another. (This functionality is often described as 'animateClass'.)</p>
8-
<pre><code>$(elem).switchClass('currentClass','newClass',500,'easeOutBounce',function(){
9-
console.log('transition is done!');
10-
});</code></pre>
11-
<p>Similar to the extension of the class-related methods, the <code>show</code>, <code>hide</code> and <code>toggle</code> methods are extended. Each can now accept configuration for the effects listed below, as <code>effect</code> (what effect to use, like "blind", <code>options</code> (effect specific configuration), <code>duration</code>, and <code>callback</code>. For effects like <code>transfer</code>, where neither a show nor hide happens, you can use the underlying <code>effect</code> method directly. The signature is the same.</p>
12-
<p>For color animation support, jQuery UI bundles the <a href="https://github.com/jquery/jquery-color">jquery-color plugin</a>. The plugin extends jQuery's <code>animate</code> method with support for animating the following properties: <code>backgroundColor, borderBottomColor, borderLeftColor, borderRightColor, borderTopColor, color, outlineColor</code></p>
13-
<p>Effects also add, to jQuery's built-in linear and swing transitions, a bunch of easings. The full list: <code>linear, swing, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeInQuart, easeOutQuart, easeInOutQuart, easeInQuint, easeOutQuint, easeInOutQuint, easeInExpo, easeOutExpo, easeInOutExpo, easeInSine, easeOutSine, easeInOutSine, easeInCirc, easeOutCirc, easeInOutCirc, easeInElastic, easeOutElastic, easeInOutElastic, easeInBack, easeOutBack, easeInOutBack, easeInBounce, easeOutBounce, easeInOutBounce</code></p>
14-
</div>
15-
</desc>
4+
<desc><![CDATA[
5+
<p>jQuery UI adds quite a bit of functionality on top of <a href="http://api.jquery.com/category/effects/">jQuery's built-in effects</a>. jQuery UI adds support for animating colors and class transitions, as well as providing several additional <a href="/easings/">easings</a>. In addition, a full suite of custom effects are available for use when showing and hiding elements or just to add some visual appeal.</p>
6+
]]></desc>
7+
</category>
8+
<category name="Widgets" slug="widgets">
9+
<desc><![CDATA[
10+
<p>Widgets are feature-rich, stateful plugins that have a full life-cycle, along with methods and events. Check out the <a href="/jQuery.widget/">widget factory</a> documentation for more details.</p>
11+
]]></desc>
1612
</category>
1713
<category name="Interactions" slug="interactions">
18-
<desc></desc>
14+
<desc><![CDATA[
15+
<p>jQuery UI provides a set of mouse-based interactions as building blocks for rich interfaces and complex widgets.</p>
16+
]]></desc>
1917
</category>
20-
<category name="Uncategorized" slug="uncategorized"/>
21-
<category name="Utilities" slug="utilities">
22-
<desc></desc>
18+
<category name="Utilities" slug="utilities"/>
19+
<category name="Methods" slug="methods">
20+
<desc><![CDATA[
21+
<p>Although jQuery UI is mostly comprised of <a href="/category/widgets/">widgets</a>, <a href="/category/interactions/">interactions</a>, and <a href="/category/effects/">effects</a>, there are also a few simple methods that are added for convenience.</p>
22+
]]></desc>
2323
</category>
24-
<category name="Widgets" slug="widgets">
25-
<desc></desc>
24+
<category name="Selectors" slug="selectors"/>
25+
<category name="Method Overrides" slug="overrides">
26+
<desc><![CDATA[
27+
<p>jQuery UI overrides several built-in jQuery methods in order to provide additional functionality. When using these overrides, it's important to make sure that jQuery UI is loaded. If jQuery UI is not loaded, the methods will still exist, but the expected functionality will not be available, resulting in bugs that may be hard to track down.</p>
28+
]]></desc>
2629
</category>
30+
<category name="All" slug="all"/>
2731
</categories>

0 commit comments

Comments
 (0)