From 06b383cbbfb448eb569b2c00d5b37940196e15cf Mon Sep 17 00:00:00 2001 From: Todd Parker Date: Thu, 11 Nov 2010 14:38:13 -0500 Subject: [PATCH] Content cleanup --- docs/api/events.html | 11 +++++++++-- docs/api/globalconfig.html | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/api/events.html b/docs/api/events.html index b7652bae..c8933229 100755 --- a/docs/api/events.html +++ b/docs/api/events.html @@ -16,9 +16,11 @@
-

Events in jQuery Mobile

+

jQuery Mobile offers several custom events that build upon native events to create useful hooks for development. Note that these events employ various touch, mouse, and window events, depending on event existence, so you can bind to them for use in both handheld and desktop environments. You can bind to these events like you would with other jQuery events, using live() or bind().

+ +

Touch events

tap
Triggers after a quick, complete touch event.
@@ -35,12 +37,17 @@
swiperight
Triggers when a swipe event occurred moving in the right direction.
+

Orientation change event

+
orientationchange
Triggers when a device orientation changes (by turning it vertically or horizontally). When bound to this event, your callback function can leverage a second argument, which contains an orientation property equal to either "portrait" or "landscape". These values are also added as classes to the HTML element, allowing you to leverage them in your CSS selectors. Note that we currently bind to the resize event when orientationChange is not natively supported.
+
+

Scroll events

+
scrollstart
Triggers when a scroll begins. Note that iOS devices freeze DOM manipulation during scroll, queuing them to apply when the scroll finishes. We're currently investigating ways to allow DOM manipulations to apply before a scroll starts.
- +
scrollstop
Triggers when a scroll finishes.
diff --git a/docs/api/globalconfig.html b/docs/api/globalconfig.html index 338f3549..2684eef0 100755 --- a/docs/api/globalconfig.html +++ b/docs/api/globalconfig.html @@ -11,7 +11,7 @@
-

Configuring Default Settings

+

Configuring Defaults