-
Notifications
You must be signed in to change notification settings - Fork 59
/
categories.xml
54 lines (52 loc) · 2.3 KB
/
categories.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<categories>
<category name="Uncategorized" slug="uncategorized"/>
<category name="Widgets" slug="widgets">
<desc><![CDATA[
<p>Widgets are feature-rich, stateful plugins that have a full life-cycle, along with methods and events. Check out the <a href="http://api.jqueryui.com/jQuery.widget/">widget factory</a> documentation for more details.
<div class="warning"><strong>Note</strong>: The base widget (<code>$.mobile.widget</code>) is deprecated as of 1.4 and will be removed in 1.5. It is now sufficient to base your custom jQuery Mobile widgets on the jQuery UI <a href="http://api.jqueryui.com/jQuery.widget/">widget factory</a> itself. This means that in your call to <code>$.widget()</code> you can omit the base altogether.
<pre><code>
$.widget( "my.widget", /* NOTE: no base needed */ {
options: {
/* ... */
},
_create: function() {
/* ... */
}
/* ... */
});</code></pre>
</div>
</p>
]]></desc>
</category>
<category name="Events" slug="events">
<desc><![CDATA[
<p>jQuery Mobile offers several custom events that build upon native events to create useful hooks for development.</p>]]></desc>
</category>
<category name="Methods" slug="methods">
<desc><![CDATA[
<p>jQuery Mobile exposes several methods on the $.mobile object for use in your applications.</p>]]></desc>
<category name="Path" slug="path">
<desc><![CDATA[
<p>A collection of methods for dealing with paths.</p>
]]></desc>
</category>
</category>
<category name="CSS Framework" slug="css-framework">
<desc><![CDATA[
<p>jQuery Mobile offers CSS-based enhancements for common user interface elements.</p>]]>
</desc>
</category>
<category name="Icons" slug="jqmicons">
<desc><![CDATA[
<p>jQuery Mobile offers a set of built-in icons that can be applied to buttons, collapsibles, listview buttons and more.</p>]]></desc>
</category>
<category name="Properties" slug="properties">
<desc><![CDATA[
<p>jQuery Mobile exposes several properties on the $.mobile object for use in your applications.</p>]]></desc>
</category>
<category name="Reference" slug="reference">
<desc><![CDATA[
<p>The jQuery Mobile framework uses HTML5 data- attributes to allow for markup-based initialization and configuration of widgets.</p>]]></desc>
</category>
<category name="All" slug="all"/>
</categories>