diff options
Diffstat (limited to 'demos/draggable')
-rw-r--r-- | demos/draggable/constrain-movement.html | 2 | ||||
-rw-r--r-- | demos/draggable/cursor-style.html | 2 | ||||
-rw-r--r-- | demos/draggable/delay-start.html | 2 | ||||
-rw-r--r-- | demos/draggable/events.html | 2 | ||||
-rw-r--r-- | demos/draggable/handle.html | 4 | ||||
-rw-r--r-- | demos/draggable/revert.html | 2 | ||||
-rw-r--r-- | demos/draggable/scroll.html | 2 | ||||
-rw-r--r-- | demos/draggable/snap-to.html | 4 | ||||
-rw-r--r-- | demos/draggable/visual-feedback.html | 4 |
9 files changed, 12 insertions, 12 deletions
diff --git a/demos/draggable/constrain-movement.html b/demos/draggable/constrain-movement.html index 7127f57ba..d98f5d218 100644 --- a/demos/draggable/constrain-movement.html +++ b/demos/draggable/constrain-movement.html @@ -59,7 +59,7 @@ <div class="demo-description"> <p> -Constrain the movement of each draggable by defining the boundaries of the draggable area. Set the <strong>axis</strong> option to limit the draggable's path to the x- or y-axis, or use the <strong>containment</strong> option to specify a parent DOM element or a jQuery selector, like 'document.' +Constrain the movement of each draggable by defining the boundaries of the draggable area. Set the <code>axis</code> option to limit the draggable's path to the x- or y-axis, or use the <code>containment</code> option to specify a parent DOM element or a jQuery selector, like 'document.' </p> </div><!-- End demo-description --> diff --git a/demos/draggable/cursor-style.html b/demos/draggable/cursor-style.html index 5e8d6f452..bd944c7d1 100644 --- a/demos/draggable/cursor-style.html +++ b/demos/draggable/cursor-style.html @@ -38,7 +38,7 @@ <div class="demo-description"> <p> -Position the cursor while dragging the object. By default the cursor appears in the center of the dragged object; use the <strong>cursorAt</strong> option to specify another location relative to the draggable (specify a pixel value from the top, right, bottom, and/or left). Customize the cursor's appearance by supplying the <strong>cursor</strong> option with a valid CSS cursor value: default, move, pointer, crosshair, etc. +Position the cursor while dragging the object. By default the cursor appears in the center of the dragged object; use the <code>cursorAt</code> option to specify another location relative to the draggable (specify a pixel value from the top, right, bottom, and/or left). Customize the cursor's appearance by supplying the <code>cursor</code> option with a valid CSS cursor value: default, move, pointer, crosshair, etc. </p> </div><!-- End demo-description --> diff --git a/demos/draggable/delay-start.html b/demos/draggable/delay-start.html index 500ac477d..23db6f871 100644 --- a/demos/draggable/delay-start.html +++ b/demos/draggable/delay-start.html @@ -34,7 +34,7 @@ <div class="demo-description"> <p> -Delay the start of dragging for a number of milliseconds with the <strong>delay</strong> option; prevent dragging until the cursor is held down and dragged a specifed number of pixels with the <strong>distance</strong> option. +Delay the start of dragging for a number of milliseconds with the <code>delay</code> option; prevent dragging until the cursor is held down and dragged a specifed number of pixels with the <code>distance</code> option. </p> </div><!-- End demo-description --> diff --git a/demos/draggable/events.html b/demos/draggable/events.html index 2365855af..d5903d009 100644 --- a/demos/draggable/events.html +++ b/demos/draggable/events.html @@ -65,7 +65,7 @@ <div class="demo-description"> <p> -Layer functionality onto the draggable using the <strong>start</strong>, <strong>drag</strong>, and <strong>stop</strong> events. Start is fired at the start of the drag; drag during the drag; and stop when dragging stops. +Layer functionality onto the draggable using the <code>start</code>, <code>drag</code>, and <code>stop</code> events. Start is fired at the start of the drag; drag during the drag; and stop when dragging stops. </p> </div><!-- End demo-description --> diff --git a/demos/draggable/handle.html b/demos/draggable/handle.html index 02526ce7c..3e600d640 100644 --- a/demos/draggable/handle.html +++ b/demos/draggable/handle.html @@ -36,8 +36,8 @@ <div class="demo-description"> -<p>Allow dragging only when the cursor is over a specific part of the draggable. Use the <strong>handle</strong> option to specify the jQuery selector of an element (or group of elements) used to drag the object.</p> -<p>Or prevent dragging when the cursor is over a specific element (or group of elements) within the draggable. Use the <strong>cancel</strong> option to specify a jQuery selector over which to "cancel" draggable functionality.</p> +<p>Allow dragging only when the cursor is over a specific part of the draggable. Use the <code>handle</code> option to specify the jQuery selector of an element (or group of elements) used to drag the object.</p> +<p>Or prevent dragging when the cursor is over a specific element (or group of elements) within the draggable. Use the <code>cancel</code> option to specify a jQuery selector over which to "cancel" draggable functionality.</p> </div><!-- End demo-description --> </body> diff --git a/demos/draggable/revert.html b/demos/draggable/revert.html index 005b99e6b..b2a95323b 100644 --- a/demos/draggable/revert.html +++ b/demos/draggable/revert.html @@ -33,7 +33,7 @@ <div class="demo-description"> <p> -Return the draggable (or it's helper) to its original location when dragging stops with the boolean <strong>revert</strong> option. +Return the draggable (or it's helper) to its original location when dragging stops with the boolean <code>revert</code> option. </p> </div><!-- End demo-description --> diff --git a/demos/draggable/scroll.html b/demos/draggable/scroll.html index 907e7e0ee..bf324ee17 100644 --- a/demos/draggable/scroll.html +++ b/demos/draggable/scroll.html @@ -40,7 +40,7 @@ <div class="demo-description"> <p> -Automatically scroll the document when the draggable is moved beyond the viewport. Set the <strong>scroll</strong> option to true to enable auto-scrolling, and fine-tune when scrolling is triggered and its speed with the <strong>scrollSensitivity</strong> and <strong>scrollSpeed</strong> options. +Automatically scroll the document when the draggable is moved beyond the viewport. Set the <code>scroll</code> option to true to enable auto-scrolling, and fine-tune when scrolling is triggered and its speed with the <code>scrollSensitivity</code> and <code>scrollSpeed</code> options. </p> </div><!-- End demo-description --> diff --git a/demos/draggable/snap-to.html b/demos/draggable/snap-to.html index 20b6a2309..db72cc37e 100644 --- a/demos/draggable/snap-to.html +++ b/demos/draggable/snap-to.html @@ -55,9 +55,9 @@ <div class="demo-description"> -<p>Snap the draggable to the inner or outer boundaries of a DOM element. Use the <strong>snap</strong>, <strong>snapMode</strong> (inner, outer, both), and <strong>snapTolerance</strong> (distance in pixels the draggable must be from the element when snapping is invoked) options. </p> +<p>Snap the draggable to the inner or outer boundaries of a DOM element. Use the <code>snap</code>, <code>snapMode</code> (inner, outer, both), and <code>snapTolerance</code> (distance in pixels the draggable must be from the element when snapping is invoked) options. </p> -<p>Or snap the draggable to a grid. Set the dimensions of grid cells (height and width in pixels) with the <strong>grid</strong> option.</p> +<p>Or snap the draggable to a grid. Set the dimensions of grid cells (height and width in pixels) with the <code>grid</code> option.</p> </div><!-- End demo-description --> diff --git a/demos/draggable/visual-feedback.html b/demos/draggable/visual-feedback.html index 88b538714..3a5ce0146 100644 --- a/demos/draggable/visual-feedback.html +++ b/demos/draggable/visual-feedback.html @@ -64,9 +64,9 @@ <div class="demo-description"> -<p>Provide feedback to users as they drag an object in the form of a helper. The <strong>helper</strong> option accepts the values 'original' (the draggable object moves with the cursor), 'clone' (a duplicate of the draggable moves with the cursor), or a function that returns a DOM element (that element is shown near the cursor during drag). Control the helper's transparency with the <strong>opacity</strong> option.</p> +<p>Provide feedback to users as they drag an object in the form of a helper. The <code>helper</code> option accepts the values 'original' (the draggable object moves with the cursor), 'clone' (a duplicate of the draggable moves with the cursor), or a function that returns a DOM element (that element is shown near the cursor during drag). Control the helper's transparency with the <code>opacity</code> option.</p> -<p>To clarify which draggable is in play, bring the draggable in motion to front. Use the <strong>zindex</strong> option to set a higher z-index for the helper, if in play, or use the <strong>stack</strong> option to ensure that the last item dragged will appear on top of others in the same group on drag stop.</p> +<p>To clarify which draggable is in play, bring the draggable in motion to front. Use the <code>zIndex</code> option to set a higher z-index for the helper, if in play, or use the <code>stack</code> option to ensure that the last item dragged will appear on top of others in the same group on drag stop.</p> </div><!-- End demo-description --> </body> |