aboutsummaryrefslogtreecommitdiffstats
path: root/demos/slider/slider_vertical.html
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-12-31 01:20:50 +0000
committerRichard Worth <rdworth@gmail.com>2008-12-31 01:20:50 +0000
commit9a35874d44262f79d1a5fc7d8c7e673518c985fd (patch)
treef9cd8915ee759d2427c657e680e9282e7b20aa86 /demos/slider/slider_vertical.html
parent2789fca8afb34dc770df8163fad7f6df15a77025 (diff)
downloadjquery-ui-9a35874d44262f79d1a5fc7d8c7e673518c985fd.tar.gz
jquery-ui-9a35874d44262f79d1a5fc7d8c7e673518c985fd.zip
demos: whitespace fixes
- trailing whitespace - inconsistent line endings - set svn:eol-style to native
Diffstat (limited to 'demos/slider/slider_vertical.html')
-rw-r--r--demos/slider/slider_vertical.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/slider/slider_vertical.html b/demos/slider/slider_vertical.html
index 875addb10..e9ef91d72 100644
--- a/demos/slider/slider_vertical.html
+++ b/demos/slider/slider_vertical.html
@@ -12,8 +12,8 @@
$("#slider-vertical").slider({
orientation: "vertical",
range: "min",
- min: 0,
- max: 100,
+ min: 0,
+ max: 100,
value: 60,
slide: function(event, ui) {
$("#amount").val(ui.value);
@@ -36,7 +36,7 @@
<div class="demo-description">
-<p>This is an example of a minimum range vertical slider created by setting the orientation to vertical:</p> <pre>orientation: "vertical",</pre>
+<p>This is an example of a minimum range vertical slider created by setting the orientation to vertical:</p> <pre>orientation: "vertical",</pre>
<p>It's important to note that a vertical slider needs a height set. You can do this via the script options or by adding a height through CSS. </p>
<p>This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback.</p>